SQL_CALC_FOUND_ROWS command fetch row count without limit December 31, 2010 select SQL_CALC_FOUND_ROWS from <tablename> where flag = 1 limit 10 and then select found_rows(); Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Custom Sorting Array List in PHP September 01, 2022 <?php $order = array("Z","Srilanka","34", "Canada", "India", "USA"); $array = array( array('id' => 7867867, 'title' => 'USA'), array('id' => 3452342, 'title' => 'India'), array('id' => 1231233, 'title' => 'Srilanka'), array('id' => 5867867, 'title' => 'Z'), ); usort($array, function ($a, $b) use ($order) { $pos_a = array_search($a['title'], $order); $pos_b = array_search($b['title'], $order); return $pos_a - $pos_b; }); print_r($array); ?> Read more
simple recursive function to copy entire directories January 15, 2011 <?php function recurse_copy ( $src , $dst ) { $dir = opendir ( $src ); @ mkdir ( $dst ); while( false !== ( $file = readdir ( $dir )) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir ( $src . '/' . $file ) ) { recurse_copy ( $src . '/' . $file , $dst . '/' . $file ); } else { copy ( $src . '/' . $file , $dst . '/' . $file ); } } } closedir ( $dir ); } ?> Read more
Comments
Post a Comment