You have already completed these exercises!
Do you want to take them again?
You completed the PHP Arrays Exercises from W3Schools.com
Share on:
What is a correct syntax for creating arrays in PHP?
$fruits = ('Apple', 'Banana', 'Orange');
$fruits['Apple', 'Banana', 'Orange'];
$fruits = array('Apple', 'Banana', 'Orange');