scrupul0us wrote:awesome.. the same either way
thanks man 🙂... you'd think after 7 years i'd remember some of this stuff
When you do not regular write code, or only use some stuff very seldom,
you forget the functions and the syntax.
Does the limiter character come before or after the string in: $arr = explode( $arg1, $arg2 );
Some stuff I know by heart now, but other things I have to look up in the PHP Manual.
When comes to working with arrays
there isnt much you can not do with [man]foreach[/man]
It is sort THE PHP CORE of working with arrays.
Access most every array key or value easy, when used in this way:
<?php
foreach( $arrayname AS $key => $value ){
// do whatever!
}
?>