PHP Create Arrays
Create Array You can create arrays by using the array() function: ExampleGet your own PHP Server $cars = array("Volvo", "BMW", "Toyota"); Try it Yourself » You can also use a shorter syntax by using the [] brackets: Example $cars = ["Volvo", "BMW", "Toyota"]; Try it Yourself » Multiple Lines Line breaks are not important, so an array...
0 Comments 0 Shares 5K Views 0 Reviews
Sponsored