$example = array('First','Second','Third','Fourth','Fifth',...
下面的代码将取消设置$example
.
unset($example[2]);
我怎样才能将unset
所有元素都超过第三个元素?
之后我希望$example
' 的价值是这样的:
$example = array('First','Second','Third');
不要使用未设置,使用array_splice:
$example = array('First','Second','Third','Fourth','Fifth');
array_splice($example,3);
//$example = array('First','Second','Third');
你可以用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)
试试这个:
for ($i = count($array); $i > 3; $i--)
{
array_pop($array);
}