接口调用后,$result= 能得到以下内容:
stdClass Object
(
[out] =>
)
以前做这直接读取 xml的,可这种带了一个 stdClass Object( [out] =>
不知道应该如何读到各节点内容了
回复讨论(解决方案)
红色代码 是由 print_r($result);得到的, 如果换成echo $result;就会出错 Catchable fatal error: Object of class stdClass could not be converted to string in
如果你对对象操作不熟悉,可以先转换为数组,这样会方便一些。
你获取的对象很简单, $result->out 就是这个XML字符串,若是想提取其中的内容,可以尝试字符串提取,或者解析XML为对象再转数组(推荐)。
http://www.php.net/manual/zh/language.oop5.properties.php
直接打印
echo $result->out;
作为xml解析
$xml = simplexml_load_string($result->out);
print_r($xml);
SimpleXMLElement Object( [flights] => SimpleXMLElement Object ( [flight] => SimpleXMLElement Object ( [@attributes] => Array ( [orgCity] => SHA [departTerm] => T2 [dstCity] => CAN [arrivalTerm] => -- [airComp] => MU [flightno] => MU5307 [planeType] => 320 [startTime] => 2012-07-20 07:30 [endTime] => 2013-07-20 09:50 [stopNumber] => 0 [mealCode] => S ) [cabins] => SimpleXMLElement Object ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [cabinCode] => Y [cabinType] => 0 [cabinDiscount] => 100 [cabinName] => 经济舱 [cabinSales] => A [ibePrice] => 1280 [encryptString] => 79fccacuigjjdskf ) ) ) [cabin] => SimpleXMLElement Object ( [@attributes] => Array ( [cabinCode] => A [cabinType] => 0 [cabinDiscount] => 250 [cabinName] => 头等折扣舱 [cabinSales] => A [ibePrice] => 2830 [encryptString] => 1c9cc629e7f7b1a ) ) ) ) [is_success] => T)
如果你对对象操作不熟悉,可以先转换为数组,这样会方便一些。
你获取的对象很简单, $result->out 就是这个XML字符串,若是想提取其中的内容,可以尝试字符串提取,或者解析XML为对象再转数组(推荐)。
PHP code?1http://www.php.net/manual/zh/language.oop5.properties.php
请问如何解析XML为对象再转数组
用DOMDocument的方法来解析吧
$xml = simplexml_load_string($result->out);// 转换对象所有属性为数组function obj2arr($obj){ $arr = get_object_vars($obj); foreach($arr as &$child){ is_object($child) && ( $child = obj2arr($child) ); } return $arr;}$data = obj2arr($xml);
接着你就可以用
$data['flights']['flight']['cabin']['@attributes']['cabinName'];
得到 头等折扣舱
当然,不转换为数组也是可以直接操作的,不过这就需要考验你的基本功
PHP code?1234567891011$xml = simplexml_load_string($result->out);// 转换对象所有属性为数组function
显示这一句出错:
simplexml_load_string() [function.simplexml-load-string]: input conversion failed due to input error
你的 php 小于 5.3
只能识别 utf-8 的 xml
所以报错
有什么办法没?
$result->out = str_replace('encoding="GB2312"', 'encoding="utf-8"', iconv('gbk', 'utf-8', $result->out));
echo $data['flights']['flight']['cabin']['@attributes']['cabinName'];
显示不出来任何数据,怎么回事

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
