在notify.php中直接输入下面代码试试看!
// 获取xml$xml=file_get_contents('php://input', 'r');// 转成php数组$data=toArray($xml);$out_trade_no=$data["out_trade_no"];
相关方法函数
function toArray($xml){ //禁止引用外部xml实体libxml_disable_entity_loader(true);$result= json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); return $result;}