Home > php教程 > php手册 > body text

PHP 使用 SimpleXML Key 遇到$如何取值

WBOY
Release: 2016-05-25 16:42:10
Original
805 people have browsed it

PHP 使用 SimpleXML 抓取后,通常会对此物件里面的东西做 for / foreach,但是当 Key 遇到 $ 开头,要如何取此值呢?

实例代码如下:stdClass Object ( [$t] => 2011-12-12T13:00:00.000Z )

注:$feed->item->'$t' 这样不行~

PHP使用 SimpleXML Key 遇到 $ 如何取值

解法:可以使用 {} 来抓取,范例如下:$t = $feed->item->{'$t'};

教程网址:

欢迎收藏∩_∩但请保留本文链接。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!