cURL経由で動的phpページのコンテンツを取得しようとしています
Web上の応答は次のようです
James Bond
Male, 20 Apr 1991
Email: james@gmail.com
Mobile: 09394949494
Website: www.google.com
Address: Swat
しかし、cURLを使用してこのURLを取得すると
カールは私にこれを与えます
Female,
Email:
Mobile:
Website:
Address:
私はこのコードを使用しています:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://localhost/cv/formats/1.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$my_html = curl_exec($ch);
echo $my_html;
curl_close($ch);