我通过CURL从网站上获取文字,但它最终在原始网站上,但是当我将它返回给我时,这只是一个空间(在源代码中查看之后),但似乎没有任何东西甚至用str_replace,(string),strval()等来帮助。
有人可以帮忙吗?
当前代码
$country = $s->fetchBetween('<dt>Country:</dt><dd>','</dd>', $result);
$country = strval($country);
$country = str_replace(" ", "", strval($country));
echo "start-{$country}-end";
exit;
网站上我“卷曲”的价值显示为
India
答案 0 :(得分:2)
请尝试以下方法。
$country = str_replace("&nbsp;", "", strval($country));
答案 1 :(得分:0)
试试这个。
$string = 'x x ';
$pattern = '/ /';
echo preg_replace($pattern, '', $string);