1. Go to this page and download the library: Download minionfactory/model-mapper 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/ */
$asdf = DB::select("SELECT TOP 3 * FROM Events INNER JOIN CommonData ON ...");
// The first argument is passed by reference so there's no need to set the variable to be returned.
// The second argument is optional, if you want to set it later.
AdvancedResult::make($asdf, [
'EventDate' => Events::class,
'reminderemailText' => CommonData::class,
'PriceCount' => 'integer'
]);
// This is how you would call the argument later.
$asdf->map(function($record){
$record->modelMapper([
'EventDate' => Events::class,
'PriceCount' => 'integer'
]);
return $record;
});
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.