你最后一句“echo json_encode($info,320);”已經(jīng)輸出這個(gè)結(jié)果了啊。
成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),平湖網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:平湖等地區(qū)。平湖做網(wǎng)站價(jià)格咨詢:13518219792
如果你是在html中直接用,就直接用就行了,如:p?php echo $info['name']; ?/p;
如果你是在ajax中用,就直接在success方法里輸出就行了,如:
$.ajax({url:"xxx.php",success:function(result){
console.log(result.name); }
});
第一種,使用smarty模板引擎
php文件:
$smarty-assign('data','hello world');
$smarty-display('index.html');
index.html文件:
div{$data}/div
輸出hello world
第二種,使用PHP變量直接輸出
php文件:
$data = 'hello world';
require 'index.html';
index.html:文件:
div?php echo $data;?/div
1、第一種是在HTML中加PHP。
head
metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/
metahttp-equiv="Content-Language"content="zh-CN"/
titleHelloWorld/title
/head
body
?php
echo"Helloworld!這是正文";
?
/body
/html
2、第二種用echo輸出HTML。
因?yàn)镠TML有的元素中有雙引號(hào),所以用echo輸出的內(nèi)容用單引號(hào)括起來,避免出錯(cuò),也省了轉(zhuǎn)義這一步。比如這樣的代碼:
?php
if(!$_POST){
echo‘formaction=""method="post"
服務(wù)器地址:inputtype="text"name="host"value="localhost"/br/
數(shù)據(jù)庫賬號(hào):inputtype="text"name="user"value=""/br/
數(shù)據(jù)庫密碼:inputtype="password"name="pwd"value=""/br/
指定數(shù)據(jù)庫:inputtype="text"name="db"value="test"/br/
inputtype="submit"value="確定"/
/form‘;
}
?
3、第三種就是用()標(biāo)記符了,這是在PHP168的模板代碼中首次見到的。
?php
printEOT
divclass="slidecont"{$label[deepblue_mainslide]}/div
divclass="newcontainter"
divclass="head"{$label[deepblue_mainh1]}/div
divclass="cont"id="Tab1"{$label[deepblue_maint1]}/div
divclass="cont"id="Tab2"{$label[deepblue_maint2]}/div
/div
ahref="$rs[url]"title="$rs[descrip]"target="_blank"$rs[name]/a
EOT;
?