如何将对象转换为数组以获取数据?

raj*_*hrt 5 php wordpress

我的阵列是这样的

Array ( [0] => stdClass Object ( [ID] => 578 [post_author] => 1 [post_date] => 2011-01-18 07:23:17 [post_date_gmt] => 2011-01-18 07:23:17 [post_content] => Home WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time. The core software is built by hundreds of community volunteers, and when you’re ready for more there are thousands of plugins and themes available to transform your site into almost anything you can imagine. Over 25 million people have chosen WordPress to power the place on the web they call “home” — we’d love you to join the family [post_title] => second post [post_excerpt] => [post_status] => publish [comment_status] => open
Run Code Online (Sandbox Code Playgroud)

我这样写的时候

$myposts = get_posts( $args );
$arrDt = (array) $myposts;
print_r($arrDt);
Run Code Online (Sandbox Code Playgroud)

但我的问题是如何获取该对象数组中的值.

请帮忙.Thnx print_r($ arrDt);

Fel*_*ing 5

这只是普通的对象访问:

$obj = $arrDt[0];
echo $obj->ID;
echo $obj->post_author;
// etc.
Run Code Online (Sandbox Code Playgroud)

但这取决于你想做什么。我建议看看这些get_posts例子。它们用于setup_postdata在当前上下文中加载帖子内容。如果您想显示帖子,这可能是更干净的解决方案。