Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
| <?php | |
| /** | |
| * Error reporting | |
| */ | |
| error_reporting(E_ALL | E_STRICT); | |
| /** | |
| * Compilation includes configuration file | |
| */ | |
| define('MAGENTO_ROOT', getcwd()); |
| <?php | |
| /* | |
| * Iteration and Recursive Iteration Examples Code | |
| * | |
| * @link http://stackoverflow.com/questions/12077177/how-does-recursiveiteratoriterator-works-in-php | |
| * @author hakre <http://hakre.wordpress.com> | |
| */ | |
| ### To have these examples to work, a directory with subdirectories is needed, | |
| ### I named mine "tree": |
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.