PHP code example of grithin / phpbase
1. Go to this page and download the library: Download grithin/phpbase 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/ */
grithin / phpbase example snippets
# get arbitrarily deep item using a path (like lodash.get)
$user_input = [
'name'=> [
'first'=>'bob',
'last'=>'bobl',
]
];
$x = Arrays::get($user_input, 'name.first');
#> 'bob'
#+ flatten array picking one value {
$user_input = [
'name'=> [
'first'=>'bob',
'last'=>'bobl',
]
];
$x = Arrays::flatten_values($user_input);
ppe($x);
#> {"name": "bob"}
#+ }
#+ flatten structured array {
$user_input = [
'name'=> [
'first'=>'bob',
'last'=>'bobl',
]
];
$x = Arrays::flatten($user_input);
ppe($x);
/*
{"name_first": "bob",
"name_last": "bobl"}
*/
#+ }
#+ pick and ensure
$user_input = [
'first_name'=>'bob',
'last_name'=>'bobl',
'unwanted'=>'blah'
];
$pick = ['first_name', 'last_name', 'middle_name'];
$x = Arrays::pick_default($user_input, $pick, 'N/A');
/*
{"first_name": "bob",
"last_name": "bobl",
"middle_name": "N\/A"}
*/
#+ }
#+ rekey and exclude {
$user_input = [
'first_name'=>'bob',
'last_name'=>'bobl',
'unwanted'=>'blah'
];
$map = ['first_name'=>'FirstName', 'last_name'=>'LastName'];
$x = Arrays::map_only($user_input, $map);
ppe($x);
/*
{"FirstName": "bob",
"LastName": "bobl"}
*/
#+ }
$bill = [$bob]
$bill[] = 'monkey'
return 'blue'
Files::inc('bob.php')
#< 'blue'
# Using variable injection and variable extraction
Files::inc('bob.php',['bob'=>'sue'], ['extract'=>['bill']])
#< ['sue', 'monkey']
$bench = new \Grithin\Bench();
for($i=0; $i<10000; $i++){
mt_rand(0,100000) + mt_rand(0,100000);
}
$bench->mark();
for($i=0; $i<10000; $i++){
mt_rand(0,100000) + mt_rand(0,100000);
}
$bench->end_out();
class Test{
use \Grithin\Traits\Memoized;
public function random(){
return microtime()
}
}
$Test = new Test;
$x = $Test->memoized_random();
$y = $Test->memoized_random();
$x == $y; # > true
# ...
$x = $Test->memoized_random();
$y = $Test->memoize_random();
$x == $y; # > false
# ...
$x = $Test->memoized_random(1);
$y = $Test->memoized_random(2);
$x == $y; # > false
class Test{
use \Grithin\Traits\Memoized;
static function random(){
return microtime();
}
}
$x = Test::memoized_random();
$y = Test::memoized_random();
$x == $y; # > true
class User{
use \Grithin\Traits\Memoized;
public user_get($id){
$user_data = Db::get('...');
if($this->memoizing()){ # function has been called with a memoize_ or memoized_ prefix
$location = Location::memoized_get($user_data['location']);
}else{
$location = Location::get($user_data['location']);
}
}
}
# optionally configure
Debug::configure([
'log_file'=>__DIR__.'/log/'.date('Ymd').'.log',
'err_file'=>__DIR__.'/log/'.date('Ymd').'.err', ]);
set_error_handler(['\Grithin\Debug','handleError'], E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
set_exception_handler(['\Grithin\Debug','handleException']);
$bob = ['bob'];
$sue = ['sue'];
$bob[] = &$sue;
$sue[] = &$bob;
$sue[] = 'moe';
Debug::out($sue);
echo 'bob';