<html>
<p>
<?php
// Create an array and push 5 elements on to it, then
// print the number of elements in your array to the screen
$fav_pe = array();
array_push($fav_pe,"test");
array_push($fav_pe,"testb");
array_push($fav_pe,"testc");
array_push($fav_pe,"testd");
array_push($fav_pe,"testf");
echo count($fav_pe);
?>
</p>
</html>
array_push로 값넣었는데
저게왜안댐??
잘댐