我有一个像
protected $aPermissions = [
'read' => [
'show'
],
'update' => [
'edit',
'editProfilePicture'
]
];
我想通过可能在子数组中找到的值来获取子数组的数组键(“读取”,“更新”)。因此,搜索“ edit”将返回“ update”,而“ show”将返回“ read”。
我尝试了PHP的array_search函数(也是递归地循环执行),但没有设法使它起作用。实现我想要的最佳方法是什么?
慕的地6264312
慕无忌1623718
Qyouu