获取远程网址的文件大小,而无需在谷歌应用引擎(php)中下载


Get file size of remote url without downloading in Google app engine(php)

嗨,想检查一些远程文件大小的文件大小,下面的csize函数在本地主机中正常工作。但是当我托管在谷歌应用引擎中时,我开始知道没有卷曲 support.so 我使用了 purl 包装器。我仍然面临错误。

我听说可以在gae php文件中使用java。如果是这样,Java中是否有任何函数可以获取远程文件的文件大小?如果是这样,如何在 php 中使用它。

<?php
require_once 'Purl.php';

echo csize('http://www.example.com');

function csize($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$size = curl_getinfo($ch, CURLINFO_CONTENT_LENGTH_DOWNLOAD);
return $size;
}

只需使用 http streams API

function csize($url) {
  $options = ['http' => [
      'method' => 'HEAD',
    ],
  ];
  $ctx = stream_context_create($options);
  $result = file_get_contents($url, false, $ctx);
  if ($result !== false) {
    foreach($http_response_header as $header) {
      if (preg_match("/Content-Length: ('d+)/i", $header, $matches)) {
        return $matches[1];
      }
    }
  }
}