array_push and print_r functions with arrays.
`
$items = array("me", "you", "he");

array_push($items, "she", "we");

print_r($items);
`
by Gigi Butchvelashvili
2 years ago
PHP
array
0
Pro tip: use ```triple backticks around text``` to write in code fences