如何获得PHP中的子数组?

我想获得由原始数组$arr的前4行组成的数组,

如何在PHP中做到这一点?

array_slice()

 $subArray = array_slice($arr,0,4); 

你需要使用array_slice()

 $output = array_slice($arr, 0, 4); 

检查出这..应该有所帮助

 <?php $input = array("a", "b", "c", "d", "e"); $output = array_slice($input, 2); // returns "c", "d", and "e" $output = array_slice($input, -2, 1); // returns "d" $output = array_slice($input, 0, 3); // returns "a", "b", and "c" // note the differences in the array keys print_r(array_slice($input, 2, -1)); print_r(array_slice($input, 2, -1, true)); ?> 

http://docs.php.net/array_slice