PHP code example of flatphp / databag
1. Go to this page and download the library: Download flatphp/databag 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/ */
flatphp / databag example snippets
use Flatphp\Databag\FilterBag;
class MyData extends FilterBag
{
protected $rules = array(
'data1' => 'trim|lower',
'data2' => ['trim', 'new MyData(array(
'data1' => ' hello test ',
'data2' => ' world'
));
if ($data->fail()) {
echo $data->getFailedMessage();
} else {
foreach ($data as $key => $value) {
echo $key .' - '. $value;
}
}