21

我在我的 Windows 系统上安装了 php5,并尝试使用命令行控制台执行以下脚本:

<?php
// load in credentials
$creds = parse_ini_file('/etc/aws.conf');

// Define query string keys/values
$params = array(
    'Action' => 'DescribeAvailabilityZones',
    'AWSAccessKeyId' => $creds['access_key'],
    'Timestamp' => gmdate('Y-m-d\TH:i:s\Z'),
    'Version' => '2008-05-05',
    'ZoneName.0' => 'us-east-1a',
    'ZoneName.1' => 'us-east-1b',
    'ZoneName.2' => 'us-east-1c',
    'SignatureVersion' => 2,
    'SignatureMethod' => 'HmacSHA256'
);

// See docs
// http://tr.im/jbjd
uksort($params, 'strnatcmp');
$qstr = '';
foreach ($params as $key => $val) {
    $qstr .= "&{$key}=".rawurlencode($val);
}
$qstr = substr($qstr, 1);

// Signature Version 2
$str = "GET\n"
     . "ec2.amazonaws.com\n"
     . "/\n"
     . $qstr;

// Generate base64-encoded RFC 2104-compliant HMAC-SHA256
// signature with Secret Key using PHP 5's native 
// hash_hmac function.
$params['Signature'] = base64_encode(
    hash_hmac('sha256', $str, $creds['secret_key'], true)
);

// simple GET request to EC2 Query API with regular URL 
// encoded query string
$req = 'https://ec2.amazonaws.com/?' . http_build_query(
    $params
);
$result = file_get_contents($req);

// do something with the XML response
echo $result;

但它说它无法找到包装器“https”并询问我是否在配置 PHP 时忘记启用它。

问题是什么以及如何解决?

4

4 回答 4

43

1:检查安装了哪些包装器。

<?php var_dump(stream_get_wrappers()); ?>

2:如果您在列表中没有看到“https”,请在 php.ini 中添加/取消注释

extension=php_openssl.dll

重启你的服务器*,你就完成了。

*如果服务器无法重新启动,请从某个地方下载 php_openssl.dll 并将其粘贴在 php.ini 文件中定义的扩展目录中,重新启动服务器,说几句地狱玛丽并祈祷。

于 2010-03-10T12:27:03.483 回答
10

file_get_contents脚本末尾的这一行正在尝试发送 HTTPS 请求 - 请参见 中的 URL $req,该 URL 以 开头'https://ec2...'

为此,PHP 需要一个“包装器”来发送 HTTPS 请求——您的系统上似乎没有安装它;这意味着您不能使用fopen函数族发送 HTTPS 请求。

有关流包装器的更多信息,如果您好奇,可以查看支持的协议/包装器列表,以及在您的情况下,HTTP 和 HTTPS

你要么必须安装 HTTPS 包装器——在 Windows 上,我不知道该怎么做,不幸的是......


或者您将不得不使用其他东西file_get_contents来发送您的 HTTPS 请求——我会使用curl扩展提供的功能(在这里,也不确定它是否会“开箱即用”,虽然 :-()

例如,您可以查看以下手册页上的建议curl_exec

// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);

请注意,您可能需要设置更多选项,使用curl_setopt-- 您应该浏览该页面:有很多有用的选项;-)


作为旁注,您在脚本的开头使用了这一行:

$creds = parse_ini_file('/etc/aws.conf');

正如您所说,您使用的是 Windows 系统,路径/etc/aws.conf感觉很奇怪:这看起来像是在 UNIX/Linux 系统上使用的那种路径。

于 2010-02-21T13:15:55.650 回答
4

打开php.ini. 找到这一行:

;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
; ...
;extension=ext/php_oci8.dll
extension=ext/php_openssl.dll         ; <---- you want this
;extension=ext/php_pdo_firebird.dll
; ...

您想取消注释该extension=ext/php_openssl.dll行。确保目录中有一个pho_openssl.dll文件ext/,相对于你的php.ini(或者更重要的extension_dir是 ini 中的变量)。

于 2014-01-08T16:44:12.250 回答
0

简单的。我有这个错误,让我很头疼。extension=php_openssl.dll在 php.ini 文件中启用(取消注释该行)。这将解决问题。

于 2014-06-23T07:45:14.467 回答