If I define an array in PHP such as (I don't define its size):
$cart = array();
Do I simply add elements to it using the following?
$cart[] = 13;
$cart[] = "foo";
$cart[] = obj;
Don't arrays in PHP have an add method, for example, cart.add(13)
?
Both
array_push
and the method you described will work.Is the same as: