好的,我在 PHP 中有这种关联数组
$arr = array(
"fruit_aac" => "apple",
"fruit_2de" => "banana",
"fruit_ade" => "grapes",
"other_add" => "sugar",
"other_nut" => "coconut",
);
现在我想要的是只选择以 key 开头的元素fruit_
。这怎么可能?我可以使用正则表达式吗?或任何可用的 PHP 数组函数?有什么解决方法吗?请为您的解决方案举一些例子