0

?img=パラメータで指定された画像を取得し、STDOUT に出力する "proxy.php" スクリプト (以下にリスト) をプログラムしました。これは、一部のサイトで不足している crossdomain.xml を Flash アプリが回避するために必要です。

動作しますが、3 つの質問があります。また、私は Perl から PHP に移行しましたが、PHP の知識にはまだ多くのギャップがあります (しかし、stream_context_create と fpassthru はおそらくバケット ブリゲードを使用していることに気付きました)。

1) callback()関数で、デバッグ メッセージを PHP ログに出力するにはどうすればよいですか? (私の CentOS マシンでは /var/log/messages にリダイレクトされます)

2 )エラー メッセージfailed to open stream: Success が表示されるのはなぜですか?

PHP Warning:  fopen() [<a href='function.fopen'>function.fopen</a>]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /var/www/html/proxy.php on line 19
PHP Warning:  fopen(http://i136.odnoklassniki.ru/getImage?photoId=154105499212&amp;photoType=0) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: Success in /var/www/html/proxy.php on line 19

3) 私のスクリプトはパラメータと同じ画像 URL で呼び出されることが多いため、最初の呼び出しで取得したファイルをディレクトリに保存するようにスクリプトを拡張したいと考えています。そして、1回目以降の呼び出しでは、キャッシュされたファイルをSTDOUTに提供する必要があります。メモリを節約する方法でそれを作成する方法について、提案はありますか? つまり、 get_file_contents()で一度にファイル全体を読みたくない

<?php

define('MAX_SIZE', 1024 * 1024);

$img = urldecode($_GET['img']);
if (strpos($img, '..') !== FALSE)
        exit('Wrong URL: ' . $img);

$opts = array(
        'http'=>array(
                'method' => 'GET'
        )
);

$ctx = stream_context_create($opts);
stream_context_set_params($ctx, array('notification' => 'callback'));
$fh = fopen($img, 'r', FALSE, $ctx);
if ($fh) {
        fpassthru($fh);
        fclose($fh);
}

function callback($code, $severity, $message, $message_code, $bytes_transferred, $bytes_total) {
        if ($code == STREAM_NOTIFY_PROGRESS && $bytes_transferred > MAX_SIZE)
                exit('File is too big: ' . $bytes_transferred);

        if ($code == STREAM_NOTIFY_FILE_SIZE_IS)
                if ($bytes_total > MAX_SIZE)
                        exit('File is too big: ' . $bytes_total);
                else
                        header('Content-Length: ' . $bytes_total);

        if ($code == STREAM_NOTIFY_MIME_TYPE_IS) {
                if (stripos($message, 'image/gif') !== FALSE ||
                    stripos($message, 'image/png') !== FALSE ||
                    stripos($message, 'image/jpg') !== FALSE ||
                    stripos($message, 'image/jpeg') !== FALSE) {
                        header('Content-Type: ' . $message);
                } else {
                        exit('File is not image: ' . $mime);
                }
        }
}

?>
4

1 に答える 1

0
  1. なぜなら:

    sviss@sviss:~$ host i136.odnoklassniki.ru
    Host i136.odnoklassniki.ru not found: 3(NXDOMAIN)
    
于 2010-11-02T10:56:35.697 に答える