array_push php 7.3 code example Example: array push php <?php $a=array("red","green"); array_push($a,"blue","yellow"); print_r($a); ?>