add to arrayy php code example Example: php add item to array <?php $z = ['me','you', 'he']; array_push($z, 'she', 'it'); print_r($z); ?>