-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using with PDO MySQL - a datetime example #20
Comments
|
hi @Athari 1-correct. The current situation is any query made in dbase the response takes ~2min (because is this dbase falling too many users.). As a result, I take all the needed records with a query then separate by YaLinqo :) 2- :) thanks I will try it. 3-ofc greets! |
hi again, found a complete example for spl_autoload_register // Add the appropiate extra include paths here
$includePaths = array(
__DIR__."/../vendor/",
__DIR__."/../modules/"
);
// Add the above paths to the global include path
set_include_path(implode(PATH_SEPARATOR, $includePaths));
// Register the psr-0 autoloader for ease of use
spl_autoload_register(function($c){@include preg_replace('#\\\|_(?!.+\\\)#','/',$c).'.php';});
the need : using the following while loop Any tip? $startdate = strtotime($dtp_start." UTC");
$enddate = strtotime($dtp_end." UTC");
while($startdate < $enddate) {
$result4 = from($rows)
->where(function ($x) {
return strtotime($x['CLOSE_DATE']) < strtotime('+8 days', $startdate) && $x['OWWNER']=='costas'; })
->toArray();
$startdate = strtotime('+7 days', $startdate);
} |
Your anonymous function lacks ->where(function ($x) use ($startdate) { ... |
hi there,
Im using it also to 'query' date/datetime field, in example an array from PDO MySQL, works flawless... :)
not optimized the manual dates (2017-02-12/2017-02-15) should be stored on vars, out of the loop.
and also advise that can be used without composer :
for groupby - check also - https://gist.github.com/mcaskill/baaee44487653e1afc0d
thanks for your time!
The text was updated successfully, but these errors were encountered: