//this file is about arrays //empty array$ar = array(); //add value "4" to first possible index$ar[] = 4;foreach ($ar as $b); { echo $b." "; } //add value "5" to second index$ar[2] = 5;foreach ($ar as $b); { echo $b; }
Hire Symfony developer at affordable price from Symfony expert.
Hire Symfony developer at affordable price from Symfony expert.
AntwortenLöschen