未指定php文件时发布空

时间:2015-02-22 12:11:10

标签: php post

如果我在调用url时没有指定php文件,$ _POST为空 例如:

使用此代码:

<?php
var_dump($_POST);

如果我这样打电话(有一些邮政参数):http://domain.com/api.json
回应是:

array(0) {
}

如果我这样打电话:http://domain.com/api.json/index.php

array(1) {
  ["param"]=>
  string(4) "test"
}

我认为它是服务器配置的东西,但我不知道究竟是什么
我希望能够在我的api调用中指定php文件

修改
响应标题:

Connection → Keep-Alive  
Content-Encoding → gzip  
Content-Length → 92  
Content-Type → application/json, text/html  
Date → Sun, 22 Feb 2015 12:19:03 GMT  
Keep-Alive → timeout=5, max=99  
Server → Apache  
Vary → Accept-Encoding  
X-Powered-By → PleskLin

0 个答案:

没有答案