PHP code example of ivir3zam / phalcon-model-middleware

1. Go to this page and download the library: Download ivir3zam/phalcon-model-middleware 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/ */

    

ivir3zam / phalcon-model-middleware example snippets


$customers = Customers::fullFind();
foreach($customers as $customer) {
    $customer->name = ($customer->gendre == 'Man'?'Mr.':'Mrs.').$customer->name;
    Customers::toObject($customer)->save();
}