1 //接收POST数据 2 $input = file_get_contents("php://input"); 3 //提取POST数据为simplexml对象 4 $xml = simplexml_load_string($input); 5 var_dump($xml);
- THE END -
最后修改:2021年5月24日
非特殊说明,本博所有文章均为博主原创。
如若转载,请注明出处:https://www.95app.top/php-%e8%8e%b7%e5%8f%96%e5%be%ae%e4%bf%a1%e6%8e%a8%e9%80%81%e7%9a%84xml/