Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/288.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
PHP-从数组输出特定内容_Php_Arrays - Fatal编程技术网

PHP-从数组输出特定内容

PHP-从数组输出特定内容,php,arrays,Php,Arrays,如何在此数组中依次输出[Comment][title]s Array ( [User] => Array ( [id] => 121 [name] => Gwoo the Kungwoo [created] => 2007-05-01 10:31:01 ) [Comment] => Array ( [0]

如何在此数组中依次输出[Comment][title]s

Array
(  
    [User] => Array
        (
            [id] => 121
            [name] => Gwoo the Kungwoo
            [created] => 2007-05-01 10:31:01
        )
    [Comment] => Array
        (
            [0] => Array
                (
                    [id] => 123
                    [user_id] => 121
                    [title] => On Gwoo the Kungwoo
                    [body] => The Kungwooness is not so Gwooish
                    [created] => 2006-05-01 10:31:01
                )
            [1] => Array
                (
                    [id] => 123
                    [user_id] => 121
                    [title] => More on Gwoo
                    [body] => But what of the ‘Nut?
                    [created] => 2006-05-01 10:41:01
                )
        )
)

如果
$foo
是数组,请执行以下操作:

foreach ($foo['Comment'] as $comment) {
    echo $comment['title'];
}

如果
$foo
是数组,请执行以下操作:

foreach ($foo['Comment'] as $comment) {
    echo $comment['title'];
}
那不行,a)应该是a]

foreach ($foo['Comment'] as $comment) {
  echo $comment['title'];
}
在模板中尝试使用此选项,设计师更喜欢此选项:

foreach($foo['Comment'] as $comment):
      echo $comment['title'];
endforeach;
那不行,a)应该是a]

foreach ($foo['Comment'] as $comment) {
  echo $comment['title'];
}
在模板中尝试使用此选项,设计师更喜欢此选项:

foreach($foo['Comment'] as $comment):
      echo $comment['title'];
endforeach;

有可能吗?看起来是object.cakephp的借口之一?看起来像是一个物体的借口。