php file_get_contents包含标题和选项以及帖子等
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php file_get_contents包含标题和选项以及帖子等相关的知识,希望对你有一定的参考价值。
<?php
function DictionaryLookup ($host, $path, $key, $params, $content) {
$headers = "Content-type: application/json\r\n" .
"Content-length: " . strlen($content) . "\r\n" .
"Ocp-Apim-Subscription-Key: $key\r\n" .
"X-ClientTraceId: " . com_create_guid() . "\r\n";
// NOTE: Use the key 'http' even if you are making an HTTPS request. See:
// http://php.net/manual/en/function.stream-context-create.php
$options = array (
'http' => array (
'header' => $headers,
'method' => 'POST',
'content' => $content
)
);
$context = stream_context_create ($options);
$result = file_get_contents ($host . $path . $params, false, $context);
return $result;
}
以上是关于php file_get_contents包含标题和选项以及帖子等的主要内容,如果未能解决你的问题,请参考以下文章
从 file_get_contents() 确定数据类型
PHP将'file_get_contents'分解为数组
PHP 将变量发送到 file_get_contents()
php中的file_get_contents或curl?
file_get_contents 通过 php 失败,通过浏览器工作
C# 相当于 file_get_contents (PHP)