Jump to content
Fórum Script Brasil
  • 0

Áreas específicas CURL


grafit_

Question

Bom eu queria saber como eu faço para marcar areas específicas do outro site usando CURL

meu script é esse:

<?php
$ch = curl_init();
// informar URL e outras funções ao CURL
curl_setopt($ch, CURLOPT_URL, "http://www.google.com.br");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// acessar URL
$output = curl_exec($ch);
// Pegar o código de resposta
$response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// Not found?
if ($response_code == '404') {
        echo 'Página não existente';
} else {
        echo $output;
}
?>

Como faço pra retirar informações de X lugar?

Grato

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

O preg_match serve para analisar alguma string atrás de uma expressão regular pré determinada, você vai ter que pegar o conteúdo do outro site com cURL ou file_get_contents e ai enviar a string para o preg_match pesquisar nela.

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.

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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...