0

知道为什么会发生这种情况吗?

代码:

<?php
print_r($this->$property);
var_dump($this->$property[0]);
?>

输出:

Array
(
    [0] => WP_Post Object
        (
            [ID] => 34901
            [post_author] => 1
            [post_date] => 2013-01-04 21:04:34
            [post_date_gmt] => 2013-01-05 02:04:34
            [post_content] => 
            [post_title] => Castro Theater  
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => open
            [ping_status] => open
            [post_password] => 
            [post_name] => castro-theater
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2013-01-04 21:04:34
            [post_modified_gmt] => 2013-01-05 02:04:34
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => http://demo.gala.local/2012/venues/castro-theater/
            [menu_order] => 0
            [post_type] => venue
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
            [p2p_id] => 34444
            [p2p_from] => 34891
            [p2p_to] => 34901
            [p2p_type] => scheduleitem_to_venue
        )

)
NULL
4

1 回答 1

1

您的代码最终$property[0]首先处理,然后尝试使用结果获取对象的属性。如果您获得$this->$property第一,那么您可以使用正常的数组表示法获取内容,并且事情将按您的预期工作。

$data = $this->$property;
var_dump($data[0]);
于 2013-01-13T03:15:08.750 回答