给定以下数组结构:
Array
(
[0] => Array
(
[widget_title] => Example
[widget_content] => A bunch of content, including <strong>HTML</strong>.
)
[1] => Array
(
[widget_title] => Example #2
[widget_content] => Less content this time.
)
)
widget_content
根据 的值访问的最佳方式是widget_title
什么?
例如,我想搜索“示例”并返回第一个数组,然后将其存储以访问该widget_content
值。