-1

初めてphp Curlを使用していますこれは私のコードです:

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,'http://huger.blog.ir/rss/');
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$full = curl_exec($ch);
curl_close($ch);
$full = (string)$full;
$l = strpos($full,'</link>');
$start = strpos($full,'<link>',$l);
$end = strpos($full,'</link>',$l+2);
global $link;
$link = substr($full, $start , $end-$start);
$v = curl_init();
curl_setopt($v,CURLOPT_URL,$link);
curl_setopt($v,CURLOPT_RETURNTRANSFER,true);
$page = curl_exec($v);
curl_close($v);
echo $page;

$chcurl はその仕事をし、$link正しく作成されました。今、2番目のカール( )が機能しないと思います$v。誰でも助けてくれますか?

4

2 に答える 2

0

このような状況では、1 つの要素を機能させることができれば、その機能する要素をfunctionやでラップしてclass、そのまま再利用します。これがあなたが探しているものかどうかを確認してください:

function cURL($url = false,$settings = false)
    {
        $string =   (!empty($settings['toString']));
        $json   =   (!empty($settings['toJson']));

        $ch     =   curl_init();
        curl_setopt($ch,CURLOPT_URL,'http://huger.blog.ir/rss/');
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
        $response   =   curl_exec($ch);

        if($string)
            $response   =   (string) $response;
        elseif($json)
            $response   =   json_decode($response,true);

        curl_close($ch);
        return $response;
    }

function toLink($cURL = false)
    {
        $l      =   strpos($cURL,'</link>');
        $start  =   strpos($cURL,'<link>',$l);
        $end    =   strpos($cURL,'</link>',$l+2);
        $link   =   substr($cURL, $start , $end-$start);
        // As noted by @Hari Swaminathan, you have a <link> at the front,
        // so strip_tags will remove that
        return strip_tags($link);
    }

$link   =   cURL('http://huger.blog.ir/rss/',array("toString"=>true));

echo cURL(toLink($link));
于 2015-11-19T07:44:23.270 に答える