View Single Post
08-11-2012, 09:09 PM
#7
fde is offline fde
Status: I'm new around here
Join date: Aug 2012
Location: netherlands
Expertise: php
Software: xampp, cream for vim
 
Posts: 3
iTrader: 0 / 0%
 

fde is on a distinguished road

  Old

Note that it is also possible to return arrays:

PHP Code:
function a(){
$array[]="a";
$array[]="b";
return 
$array;
}


$a=a();
print_r($a);