web-dev-qa-db-ja.com

cURLおよびPHP:画面への出力を停止します

このPHPスクリプトは、XMLを除いたすべてのデータをブラウザに出力します(Chromeを使用しています)。画面への出力を抑制するにはどうすればよいですか?

<html>
<head><title>Twitcap</title></head>
<body>
<?php
  function twitcap()
  {
    // Set your username and password
    $user = 'osoleve';
    $pass = '********';

    $ch = curl_init("https://Twitter.com/statuses/friends_timeline.xml");

    curl_setopt($ch,CURLOPT_HEADER,0); // We want to see the header
    curl_setopt($ch,CURLOPT_TIMEOUT,30); // Set timeout to 30s
    curl_setopt($ch,CURLOPT_USERPWD,$user.':'.$pass); // Set uname/pass
    curl_setopt($ch,CURLOPT_RETURNTRANSER,1); // Do not send to screen

    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,1);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,1);

    $xml = new SimpleXMLElement( curl_exec($ch) );
    curl_close($ch);

    return $xml;
  }

  $content = twitcap();
  echo "Hello, world.<br /><br />";
?>
</body>
</html>
34
Andy

FTRANSFERを省略しました。これを変更してください:

curl_setopt($ch,CURLOPT_RETURNTRANSER,1);

これに:CURLOPT_RETURNTRANS[〜#〜] f [〜#〜]ER

curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

58
Brandon Horsley