PHP code example of cristiannores / suite-ctrm-generator
1. Go to this page and download the library: Download cristiannores/suite-ctrm-generator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cristiannores / suite-ctrm-generator example snippets
$mapperContacts = new ContactsMapper();
// Guardando contactos
$mapperContacts->store($data);
// Obteniendo contacto por id
$mapperContacts->get($id);
// Actualizando contacto por id
$mapperContacts->update($contact, $id);
// Encontrando un contacto por parametros
$mapperContacts->findOneBy($find);
// Encontrando muchos contactos por parametro
$mapperContacts->findManyBy($data);
// Borrando un contacto
$mapperContacts->delete($id);
// Obteniendo todos los contactos un contacto
$mapperContacts->getAll();