среда, 2 ноября 2011 г.

Незнал

У Perl:

my @arr;
push @arr,'element';


В PHP:

$arr = array();
$arr[] = 'element';


Вот такой push в PHP