编程语言
首页 > 编程语言> > php file_get_contents向Bugzilla安装发送错误的内容类型

php file_get_contents向Bugzilla安装发送错误的内容类型

作者:互联网

我正在创建一个脚本,该脚本应该向bugzilla安装发送请求,以便登录用户并发布错误.

我正在使用Google Code http://code.google.com/p/bugzillaphp/上提供的BugzillaPHP
一切都在我的本地服务器上正常工作,但不在运行脚本的远程服务器上运行.

我从Bugzilla回来的错误是:

Content-Type must be ‘text/xml,’ ‘multipart/*,’ ‘application/soap+xml,’ ‘or ‘application/dime’ instead of ‘application/x-www-form-urlencoded’

这意味着我的脚本在标头中发送了错误的内容类型(或者Bugzilla错误地检测到标头).
但是我很确定content-type设置为正确的值.
这是我的代码:

    $context = stream_context_create(array('http' => array(
        'method' => 'POST',
        'header' => 'Content-Type: text/html',
        'content' => $body
    )));


    $response = file_get_contents($url, false, $context);

有任何想法吗?

解决方法:

什么是php版本的远程服务器? 5.2中存在阻止发送标头的错误.需要在stream_context_create之前添加到ini_set:

    $params = array('http' => array(
        'method' => 'POST',
        'header' => 'Content-Type: text/html',
        'content' => $body
    ));

    // workaround for php bug where http headers don't get sent in php 5.2 
    if(version_compare(PHP_VERSION, '5.3.0') == -1){ 
        ini_set('user_agent', 'PHP-SOAP/' . PHP_VERSION . "\r\n" . $params['http']['header']); 
    } 

    $context = stream_context_create($params);
    $response = file_get_contents($url, false, $context);

标签:php,file-get-contents,bugzilla
来源: https://codeday.me/bug/20190630/1334333.html