PHP code example of ibonly / potato-orm

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

    

ibonly / potato-orm example snippets


    namespace Ibonly\PotatoORM;

    class User extends Model
    {
        protected $table = 'tableName';

        protected fillables = ['name', 'email'];
    }

    use Ibonly\PotatoORM\User;

    $sugar = new User();

    return $sugar->getAll()->all();

    use Ibonly\PotatoORM\User;

    $sugar = new User();

    return $sugar->where([$field => $value])->first()->username;


    return $sugar->where([$field => $value, $field2 => $value2], 'AND')->first()->username;

    use Ibonly\PotatoORM\User;
    $update = new User();

    $update->password = "password";
    echo $insert->update(1)


    use Ibonly\PotatoORM\User;

    $insert = new User();
    $insert->id = NULL;
    $insert->username = "username";
    $insert->email = "[email protected]";
    $insert->password = "password";
    echo $insert->save();

    use Ibonly\PotatoORM\User;

    $insert = new User();
    $insert->id = NULL;
    $insert->username = "username";
    $insert->email = "[email protected]";
    $insert->avatar = $this->content->file($_FILES['image'])->uploadFile($uploadDirectory);
    $insert->password = "password";
    echo $insert->save();


    use Ibonly\PotatoORM\User;

    $insert = User::destroy(2);
    die($insert);

    use Ibonly\PotatoORM\Schema;

    $user = new Schema;
    $user->field('increments', 'id');
    $user->field('strings', 'username');
    $user->field('strings', 'name', 50);
    $user->field('integer', 'age');
    $user->field('primaryKey', 'id');

    echo $table->createTable('players');

    $user->field('foreignKey', 'id', 'users-id');

    $user->field('unique', 'email')