Recent Posts
thephpcode
Return To Blog Listing
thephpcode php code resource for all where we have code examples, cool techniques, tricks and sales of codes.
Recent Posts Tagged With 'foreach'
Getting function name in a function
I came to this time when I was doing recursive functions. I thought that if I change the function name, I will have to change the name again in the codes within the function. Consider the function below.<?phpfunction a($v){$ret = array(); if(is_a...
Arrays Loop Benchmarking: foreach vs while
Yes yes, i am current obsessed with loads of PHP speed tests on my local machine. But today I worked on something interesting: foreach vs while loops for Arrays.Remember one of my posts titled "PHP Loop Benchmarking - WHILE vs FOR"? It talks about yo...
Array vs Class - which is better?
The other day I was discussing with my friend and we talked about Array and Classes. of course in Samstyle PHP Framework, I actually dropped the usage of classes. There are reasons why I went for arrays instead of classes.With the help of PHP: Arrays...
