I have an array of arrays:
Array ( [0] => Array ( [Name] => news/edit )
[1] => Array ( [Name] => news/show ) )
I have the following two variables:
$module = 'news';
$action = 'show';
I want to see if my array contains news/show or $module/$action
I can use explode here, but I can only explode one array.