Source Code:
(back to article)
<?php $fruits = ["apple", "banana", "cherry"]; $fruits[] = "Orange"; print_r($fruits);
Result:
Report an issue