如何取消设置数组键和值?
Array
(
[0] => Array
(
[accountNo] => 208773
)
)
Array
(
[0] => Array
(
[accountNo] => 9415238
)
)
Array
(
)
我如何取消设置最后一个数组,以便它必须仅显示前 2 个数组。
请帮忙
谢谢
Array
(
[0] => Array
(
[accountNo] => 208773
)
)
Array
(
[0] => Array
(
[accountNo] => 9415238
)
)
Array
(
)
how can i unset the last array so that it must display only first 2 array.
please help
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果这 3 个数组是一个数组的内容,我们称其为
$array
:将删除最后一个数组,并可选择返回其值。
http://php.net/manual/function .array-pop.php
这与此处的
unset()
执行相同的操作,但出于好奇,这里有另一种方法:尽管使用
array_pop()
,另一种方法仅供娱乐,但你如果您想更改最后一个元素的值,可以使用它。演示:http://codepad.org/UFjal89X
一些参考:
key()
: http://php.net/manual/function.key.phpend ()
: http://php.net/manual/function.end.phpIf these 3 arrays are the content of one array, let's call it
$array
:Will remove the last one, and optionally return it's value.
http://php.net/manual/function.array-pop.php
This does the same thing as
unset()
here, but for curiosity's sake, here's another way:Just use
array_pop()
though, the other method was for entertainment purposes only, but you could use it if you want to change the last element's value.Demo: http://codepad.org/UFjal89X
Some reference:
key()
: http://php.net/manual/function.key.phpend()
: http://php.net/manual/function.end.php试试这个(如果我理解你的问题)
工作演示
try this ( if i understand your problem)
WORKING DEMO