PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

xmlrpc_encode_request> <xmlrpc_decode_request
Last updated: Fri, 05 Sep 2008

view this page in

xmlrpc_decode

(PHP 4 >= 4.0.7, PHP 5)

xmlrpc_decodeXML をネイティブな PHP 型にデコードする

説明

mixed xmlrpc_decode ( string $xml [, string $encoding ] )
警告

この関数は、 実験的 なものです。この関数の動作・ 名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。

パラメータ

xml

XMLRPC メソッドが返す XML レスポンス。

encoding

iconv がサポートする入力エンコーディング (デフォルトは "iso-8859-1")。

返り値

XMLRPC メソッドのレスポンスをもとに作成した、 配列あるいは整数、文字列、boolean 値を返します。

xmlrpc_encode_request() の例を参照ください。



add a note add a note User Contributed Notes
xmlrpc_decode
david dot bachelart at polytechnique dot org
19-Jul-2004 12:18
Be careful with encodings, the xmlrpc-decode function is rather strict. For example, the following response parse returns NULL :

<?xml version="1.0"?>
<methodResponse>
   <params>
      <param>
         <value><string>a & b</string></value>
         </param>
      </params>
   </methodResponse>

You should use entities :
<?xml version="1.0"?>
<methodResponse>
   <params>
      <param>
         <value><string>a &amp; b</string></value>
         </param>
      </params>
   </methodResponse>

If your server does not encode responses properly, you may have to process responses before parse.
hfuecks at pinkgoblin dot com
16-Aug-2002 07:57
Use this with an XML-RPC client to decode a server response into native PHP variables. It will automatically translate the response XML-RPC data types into their PHP equivalents.

This function will return only false is there is any problem with format of the XML it receives.

The HTTP response header will need to be stripped off with something like;

<?php
$xml
=(substr($response, strpos($response, "\r\n\r\n")+4));

$phpvars = xmlrpc_decode ($xml);
?>

xmlrpc_encode_request> <xmlrpc_decode_request
Last updated: Fri, 05 Sep 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites