json_encode用法
$query=mysql_query($SQL);
while($row = mysql_fetch_array($query)){
$xdata[]=$row['EventDate'];
$ydata[]=intval($row['data']);
}
$data_arr=array($xdata,$ydata)
json_encode($data_arr);
$.ajax({
type: "Get",
url: "columndata.php?r=" + Math.floor(Math.random() * 1000 + 1),
data: { 'BeginTime': "" + beginTime + "", "EndTime": "" + endTime + "" , "keyword": "" + keyword + "" },
dataType: "text",
global: false,
async: false,
success: function (strReult) {
if (strReult == "-1") { alert("fail!"); return; }
},
error: function () {
alert("fail!");
}
});
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
上一篇: 智能截取图片(缩略图)
下一篇: 求抓取京东商品的价格
推荐阅读
-
C#中List怎么用?List基础用法汇总
-
json_encode用法
-
CodeIgniter配置之SESSION用法实例分析,session用法实例_PHP教程
-
PHP 中日期时间函数 date() 的用法总结
-
关于声明属性Strong还是Copy的用法
-
Delphi 10.1 Berlin的修饰符Weak,UnSafe对于接口的用法
-
SQLMAP的部分用法
-
JS正则表达式修饰符中multiline(/m)用法分析
-
PHP中json_encode、json_decode与serialize、unserialize的性能测试分析
-
C语言入门学习(02)——HelloWorld程序分析&printf函数的用法