你數(shù)據(jù)在程序里面轉(zhuǎn)為 gbk了,但是頁面默認是utf8格式的吧,兩遍不一致導致的,發(fā)個header("Content-Type:text/html;charset=utf-8"); 兩遍編碼要一致!
梓潼網(wǎng)站建設公司創(chuàng)新互聯(lián),梓潼網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為梓潼上1000家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設公司要多少錢,請找那個售后服務好的梓潼做網(wǎng)站的公司定做!
//js
$.ajax({
async: false,
url:url,//后臺地址
type:'GET',
dataType:"json",
success: function(data){
//data,后臺返回數(shù)據(jù)
},
error: function(){
alert("輸出錯誤");
}
});
//后臺函數(shù)
public function get_content(){
$lists = M('bbs_note')-select();//獲取數(shù)據(jù)庫數(shù)據(jù)
if(!empty($lists)){
$this-ajaxReturn($lists);//返回數(shù)據(jù)
}
}
兩種比較簡單的方法:
1、使用curl
$url?=?"";
$ch?=?curl_init();
curl_setopt($ch,?CURLOPT_URL,?$url);
curl_setopt($ch,?CURLOPT_RETURNTRANSFER,?1);
curl_setopt($ch,?CURLOPT_TIMEOUT?,?30);
$output?=?curl_exec($ch);
curl_close($ch);
echo?$output;
2、使用file_get_contents
$output?=?file_get_contents($url);
echo?$output;
3 、使用socket 也是可以的