0
$example = array('First','Second','Third','Fourth','Fifth',...

下面的代码将取消设置$example.

unset($example[2]);

我怎样才能将unset所有元素都超过第三个元素?

之后我希望$example' 的价值是这样的:

$example = array('First','Second','Third');
4

3 回答 3

2

不要使用未设置,使用array_splice

$example = array('First','Second','Third','Fourth','Fifth');
array_splice($example,3);
//$example = array('First','Second','Third');
于 2012-09-08T02:56:13.167 回答
1

你可以用array_splice这个。

$example = array('First','Second','Third','Fourth','Fifth');
array_splice($example, 3);
var_dump($example);

array
  0 => string 'First' (length=5)
  1 => string 'Second' (length=6)
  2 => string 'Third' (length=5)
于 2012-09-08T02:56:22.843 回答
0

试试这个:

for ($i = count($array); $i > 3; $i--)
{
    array_pop($array);
}
于 2012-09-08T02:58:27.897 回答