?php
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比陜州網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式陜州網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋陜州地區(qū)。費用合理售后完善,10余年實體公司更值得信賴。
header("Content-type: text/json; charset=utf-8");
$arr = array(
array('id"=1,"name"="kkasfl"),
array('id"=2,"name"="f6dsaf6dfs6ds")
);
echo json_encode($arr);
首先json_encode第二參數(shù)不應該使用true
?php
$list?=?[];
while($array?=?mysql_fetch_array($result,?MYSQL_ASSOC)){
$list['hour'][]?=?$array["hour"];
$list['data'][]?=?$array["data"];
}
echo?json_encode($list);
需要準備的材料分別是:電腦、php編輯器、瀏覽器。
1、首先,打開php編輯器,新建php文件,例如:index.php,填充問題基礎代碼。
2、在index.php中,輸入代碼:
$b = json_decode($a);
echo $b-content-location-lat;
echo ',';
echo $b-content-location-lng;
3、瀏覽器運行index.php頁面,此時lng和lat的值都被打印了出來。
header("Content-type:text/html;charset=utf-8");
mysql_connect('主機名','賬號','密碼');
mysql_select_db('數(shù)據(jù)庫名');
mysql_query('set?names?utf8');
$sql="SELECT?username,regdate?FROM?表名?where?username='".$_GET['USERNAME']."'";
$res=mysql_query($sql);
if($row?=?mysql_fetch_row($res)){
$json?=?array(
'state'=true,
'username'=$row[0],
'regdate'=$row[1],
'rand_num'=date('Y/m/d?H:i:s')
);
}else{
$json?=?array(
'state'=false,
'rand_num'=date('Y/m/d?H:i:s')
);
}
echo?json_encode($json);
exit();
明白的人應該一眼就能看懂吧