PHP头条
热点:

php接收客户端post数据有关问题


php接收客户端post数据问题
vc客户端向php server端post abc.txt文件,但在php server端的upfiles目录下未生成abc.txt文件,用Fiddler抓包,发现php server端返回http 200,post的abc.txt文件内容也有,为啥server收不到呢?请高手指点。非常感谢!
abc.txt文件内容:
verify:local
id:1111
host:2.2.2.2
id:2222
host:3.3.3.3
id:3333
host:4.4.4.4

Fiddler抓包截图:



php server端代码:
$uploadfile = "upfiles/". $_FILES['upfile']['name'];
move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
?>  分享到:
------解决方案--------------------

$uploadfile = "upfiles/". $_FILES['upfile']['name'];
echo move_uploaded_file($_FILES['upfile']['tmp_name'], $uploadfile);
?>
 
检查upfiles目录的权限,用户是否有写权限?

www.phpzy.comtrue/phprm/6901.htmlTechArticlephp接收客户端post数据有关问题 php接收客户端post数据问题 vc客户端向phpserver端postabc.txt文件,但在phpserver端的upfiles目录下未生成abc.txt文件,用Fiddler抓包,发现phpserver端返回http200,pos...

相关文章

相关频道:

PHP之友评论

今天推荐