Jump to content
  • 0

curl


solos
 Share

Question

Делаю на сайте скрипт отправки смс который заходит на сайт мобильного оператора берет код-картинку при помощи курл. Для чего я так делаю? Стоит блок в данного оператора при котором сначала нужно подтвердить прием получение смс с нета.

Вот тут возникает проблемка. Вместо картинки я вижу символы картинки, а нужно вытянуть куку и чтобы картинка выводилась. Картинку формирует пхп скрипт типа http://www.operator.ru/img.php и он же дает куку. Что предложите?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
ну можно забить на curl - через сокеты и регулярные выражения разбираем все, включая заголовки

еще можно предложить http://pear.php.net/package/HTTP_Client

Сначала нужно разобраться с ответом, а потом писать.

Link to comment
Share on other sites

  • 0

Смотрел, смотрел и понял что нужно в инициализации прописать страничку:

$ch = curl_init ("http://www.operator.ru/img.php");

curl_setopt ($ch, CURLOPT_HEADER, 1);

curl_exec ($ch);

curl_close ($ch);

А раньше делал, так и поэтому не мог получить то что нужно:

function Post($url,$useragent,$referer){

$ch = curl_init();

curl_setopt ($ch, CURLOPT_USERAGENT, $useragent);

curl_setopt ($ch, CURLOPT_REFERER, $referer);

curl_setopt($ch,CURLOPT_URL,$url);

curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt ($ch, CURLOPT_HEADER, 1);

curl_exec($ch);

curl_close($ch);

}

$url = "http://....";

$useragent = $_SERVER["HTTP_USER_AGENT"];

$referer = "Referer: http://...";

Post($url,$useragent,$referer);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy