douyanjing8287 2018-05-24 13:59
浏览 23

删除变量内的数组

In my content management system, the variable $data outputs the following:

Array ( [name] => last_visit [value] => 1211809129 [expire] => 1558705129 [domain] => [path] => / [prefix] => exp_ [httponly] => 1 [secure_cookie] => 0 ) 
Array ( [name] => last_activity [value] => 1527169129 [expire] => 1558705129 [domain] => [path] => / [prefix] => exp_ [httponly] => 1 [secure_cookie] => 0 ) 
Array ( [name] => csrf_token [value] => e39fe1edcd0bc48a6e35985069a [expire] => 1527176329 [domain] => [path] => / [prefix] => exp_ [httponly] => 1 [secure_cookie] => 0 ) 

I need to modify the variable, removing an array, for example the second array with the 'name' of 'last_activity'.

As the arrays don't have keys, I am having trouble selecting it to delete it.

I had thought I could use unset, like:

unset($data[1]);

but this doesn't work.

How can I remove an array from the variable?

  • 写回答

2条回答 默认 最新

  • dsy19890123 2018-05-24 14:00
    关注

    you could do it like this:

    foreach ($data as $key => $value)
    {
        if ($value['name'] === 'last_activity') {
            unset($data[$key]);
        }
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度