由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - Help --- Parsing posted JSON data
相关主题
请问一个awk和sed连用的问题编写支持CGI的web服务器大致原理
请教一格批量文件名修改的问题哈能在matlab或python里面callback ffplay frame-by-frame妈?
我的wget好快啊!!!./test input and ./test < input
how to install adobe flash player in a 64 bit system?How to write script to dl online stream
script question有没有简化的xml?
请问linux下有没有转换jp2图片格式的软件internals of gcc
怎么重发一个http包?segmentation fault as soon as entering 1 function in the ar (转载)
怎样得到一个目录里所有上个月创建文件的大小总和?how to use ffmpeg1 to embed chinese in the movie?
相关话题的讨论汇总
话题: json话题: post话题: jsonobj话题: dump话题: server
进入Linux版参与讨论
1 (共1页)
z*****e
发帖数: 74
1
Hi, I am trying to do following, not sure if it is possible:
1: On server one, posting data using:
curl -i -X POST -d 'json={
"disk": {
"root": "56%",
"tmp" : "4%",
"opt" : "7%",
"var" : "9%"
}
}'
2: On http server 2, a PHP script is used to capture the JSON data:
var_dump( $_POST['json'] );
$jsonObj = json_decode( $_POST['json'], true );
var_dump( $jsonObj );
?>
But dump $jsonObj is NULL.
I am new to JSON ... any idea what I am missing?
Thanks
a9
发帖数: 21638
2
是不是双引号得转义啊?

【在 z*****e 的大作中提到】
: Hi, I am trying to do following, not sure if it is possible:
: 1: On server one, posting data using:
: curl -i -X POST -d 'json={
: "disk": {
: "root": "56%",
: "tmp" : "4%",
: "opt" : "7%",
: "var" : "9%"
: }
: }'

z*****e
发帖数: 74
3
not sure ... first var_dump works fine. Bit decode was not working
1 (共1页)
进入Linux版参与讨论
相关主题
how to use ffmpeg1 to embed chinese in the movie?script question
Linux新手问一Ubuntu Dev问题请问linux下有没有转换jp2图片格式的软件
python code performance --- normal or too slow? (转载)怎么重发一个http包?
问一个bash stream output parse的问题怎样得到一个目录里所有上个月创建文件的大小总和?
请问一个awk和sed连用的问题编写支持CGI的web服务器大致原理
请教一格批量文件名修改的问题哈能在matlab或python里面callback ffplay frame-by-frame妈?
我的wget好快啊!!!./test input and ./test < input
how to install adobe flash player in a 64 bit system?How to write script to dl online stream
相关话题的讨论汇总
话题: json话题: post话题: jsonobj话题: dump话题: server