This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // PHP 5.5+ | |
| $items = array( | |
| array('cost' => 2), | |
| array('cost' => 3), | |
| array('cost' => 5) | |
| ); | |
| echo array_sum(array_column($items, 'cost')); // output 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ( ! function_exists('basic_info')) | |
| { | |
| function basic_info() | |
| { | |
| $dir = APPPATH; | |
| if (is_dir($dir)) { | |
| foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir)) as $filename) { |
OlderNewer