我在我的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时启用它。
问题是什么以及如何解决?
答案 0 :(得分:40)
1:检查安装了哪些包装。
<?php var_dump(stream_get_wrappers()); ?>
2:如果您在列表中看不到“https”,请从php.ini添加/取消注释
extension=php_openssl.dll
重新启动服务器*,完成后。
*如果服务器无法重启,请从某个地方下载php_openssl.dll,并将其粘贴在php.ini文件中定义的扩展目录中,重新启动服务器,说一些地狱玛丽并祈祷。
答案 1 :(得分:10)
脚本末尾的file_get_contents
行正在尝试发送HTTPS请求 - 请参阅$req
中以'https://ec2...'
开头的网址。
为了实现这一点,PHP需要一个“包装器”来发送HTTPS请求 - 这似乎没有安装在您的系统上;这意味着您无法使用fopen
家庭功能发送HTTPS请求。
有关流包装器的更多信息,如果您感到好奇,可以查看List of Supported Protocols/Wrappers,在您的情况下,HTTP and 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');
路径/etc/aws.conf
感觉很奇怪,正如您所说的使用Windows系统:这看起来像是在UNIX / Linux系统上使用的那种路径。
答案 2 :(得分:3)
打开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
(或者更重要的是ini中的extension_dir
变量)。
答案 3 :(得分:0)
简单。我有这个错误,让我头疼。在php.ini文件中启用(取消注释行extension=php_openssl.dll
)。这将解决问题。