我编写了一个“proxy.php”脚本(如下所列),它将获取在?img=参数中指定的图像并将其打印到 STDOUT。这是我的 Flash 应用程序在某些站点上规避缺少的 crossdomain.xml 所必需的。
它有效,但我有3个问题。另外,我是从 Perl 开始使用 PHP 的,但我的 PHP 知识仍然有很多空白(但我意识到,stream_context_create 和 fpassthru 可能使用桶旅)。
1) 在我的callback()函数中,如何将调试消息打印到 PHP 日志?(它被重定向到我的 CentOS 机器上的 /var/log/messages)
2)为什么我收到错误消息failed to open stream: Success,我可能错过了callback()中的一个案例吗?
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&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 来调用,所以我想扩展它,以便在第一次调用时将获取的文件保存在目录中。在第一次和随后的调用中,它应该将该缓存文件提供给 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);
}
}
}
?>