PHP code example of idrinth / entity-generator

1. Go to this page and download the library: Download idrinth/entity-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/ */

    

idrinth / entity-generator example snippets



//generate entities for a schema named test and a schema named tester
//existance an autoloader is expected
$generator =  new \De\Idrinth\EntityGenerator\EntityGenerator(
                new \PDO('mysql:host:localhost', 'root', ''),
                __DIR__.DIRECTORY_SEPARATOR.'{{schema}}',
                'De\Idrinth\EntityGenerator\Test'
            );
$object->run(array('test','tester'));