打印数组

发布于 2024-11-08 02:13:40 字数 823 浏览 1 评论 0原文

我有一个从函数 $site->latestBookmarks() 返回的数组,它包含以下内容:

Array ( [0] => Array ( [url] => http://support.apple.com/kb/HT1343 [title] => Mac OS X Keyboard Shortcuts ) [1] => Array ( [url] => http://stuffkit.com/30-stunning-mixed-hq-wallpapers.htm [title] => 30 Stunning Mixed HQ Wallpapers ) )

我正在尝试打印这两个项目的标题。

<?php

// index.php

include 'classes/Site.class.php';
$site = new Site();

print_r($site->latestBookmarks());

?>

<html>
<head>
    <title>Index</title>
</head>
<body>
    <h1>Latest Bookmarks</h1>
    <?php 

    while ($latestbookmarks = $site->latestBookmarks()) {
        echo $latestbookmarks['title'];
    }

    ?>
</body>
</html>

目前只是继续循环。

I have an array which is returned from the function $site->latestBookmarks() and it contains the following:

Array ( [0] => Array ( [url] => http://support.apple.com/kb/HT1343 [title] => Mac OS X Keyboard Shortcuts ) [1] => Array ( [url] => http://stuffkit.com/30-stunning-mixed-hq-wallpapers.htm [title] => 30 Stunning Mixed HQ Wallpapers ) )

I am trying to print the title of both of the items.

<?php

// index.php

include 'classes/Site.class.php';
$site = new Site();

print_r($site->latestBookmarks());

?>

<html>
<head>
    <title>Index</title>
</head>
<body>
    <h1>Latest Bookmarks</h1>
    <?php 

    while ($latestbookmarks = $site->latestBookmarks()) {
        echo $latestbookmarks['title'];
    }

    ?>
</body>
</html>

At the moment is just keeps on looping.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2024-11-15 02:13:40
foreach($site->latestBookmarks() as $bookmark) {
  echo $bookmark['title'];
}
foreach($site->latestBookmarks() as $bookmark) {
  echo $bookmark['title'];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文