Answers for "php insert into from array"

PHP
5

php add item to array

<?php
  $z = ['me','you', 'he'];
  array_push($z, 'she', 'it');
  print_r($z);
?>
Posted by: Guest on June-02-2020

Browse Popular Code Answers by Language