在CURL请求之后使用PHP删除

时间:2011-11-24 03:35:25

标签: php html curl

我通过CURL从网站上获取文字,但它最终在原始网站上,但是当我将它返回给我时,这只是一个空间(在源代码中查看之后),但似乎没有任何东西甚至用str_replace,(string),strval()等来帮助。

有人可以帮忙吗?

当前代码

    $country = $s->fetchBetween('<dt>Country:</dt><dd>','</dd>', $result);
    $country = strval($country);
    $country = str_replace("&nbsp;", "", strval($country));
    echo "start-{$country}-end";
    exit;

网站上我“卷曲”的价值显示为

India&nbsp;

2 个答案:

答案 0 :(得分:2)

请尝试以下方法。

$country = str_replace("&amp;nbsp;", "", strval($country));

答案 1 :(得分:0)

试试这个。

$string = 'x&nbsp;&nbsp;&nbsp;&nbsp;x ';
$pattern = '/&nbsp;/';
echo preg_replace($pattern, '', $string);