○ = push △, ▲
push @array, 1 push @array, 1, 2, 3
関数を利用した普通の方法
array_push( $array, 1 );
PHPらしくない方法
$array[] = 1;
オブジェクトらしい方法
array.push( 1 );