企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` array_filter() 如果没有提供 callback 函数, 将删除 array 中所有等值为 FALSE 的元素。 啥也不说,直接上代码,可惜php的闭包跟js一样又臭又长: $data = [ [ 'id' => 1, 'name' => '你好,234', 'cate' => '生活日记'], [ 'id' => 2, 'name' => '79798', 'cate' => '摄影美图'], [ 'id' => 3, 'name' => '567567', 'cate' => '生活日记'], ]; $filtered = array_filter($data, function($item){ return $item['cate'] !== '摄影美图'; }); print_r($filtered); ```