配列
(
[説明] => HTTP/1.1 200 OK
Set-Cookie: JSESSIONID=40EA513DEFAE87D378EACB79C4E8A1B5; Path=/ipcam
Content-Type: text/xml;charset=UTF-8
Transfer-Enコーディング: チャンク化
日付: 2013 年 6 月 27 日木 01:08:23 GMT
サーバー: Apache-Coyote/1.1
c1b
:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://www.liveipc.com /UserService/">
我写的正则都只能取一件,比如取xml最初のデータ:
'/.*?>/'
可我如果取多行xml数値時就不到,比如:
'//'
$preg='/<\?xml version\="1\.0" encoding\="UTF\-8" \?>(.*?)\}/ius';preg_match_all($preg, $str, $lined);print_r($lined);
那你是怎么写的?
'/.*?>/'
可我如果取多行xmlデータ時間就不到,比如:
'//'
你これも可
$preg='/\<\?xml.*Envelope\>/ius';preg_match_all($preg, $str, $lined);print_r($lined);
ハイハンド。多谢版主们。