这是我的代码
$urlArray = array();
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_ENCODING, 'UTF-8');
$result = curl_exec($ch);
当我使用print_r($result)
=>结果是:TênHuyệtMệnhMôn:
很高兴。 Huyệtnằmgiữa2huyệtThậnDu,làcửatrọngyếucủaxinmệnh,vìvậygọilàMệnhMôn(Trung YCươngMục)。
但我使用preg_match('|Tên Huyệt(.*)|', $result, $matches)
它返回数组为空。
我不知道为什么。有人告诉我为什么,请。
答案 0 :(得分:1)