Array function problem
Posted: Sat Sep 29, 2007 12:12 am
I'm facing a problem with array functions.
the problem is array_values() function return just "Array" but not the values. I can't understand the problem. 
Code: Select all
$menu=array('breakfast' => 'butter and bread','lunch' =>'normal','dinner' =>'dish and salad');
echo is_array($menu);
echo "<br>";
echo array_values($menu);