码迷,mamicode.com
首页 > Web开发 > 详细

PHP后台代码解决跨域问题

时间:2017-12-11 18:49:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:问题   json   origin   header   names   代码   class   jsonp   from   

 

 在前端里面,解决跨域的时候总显得那么的恶心,什么jsonp啊,ajax啊,CORS啊什么的,总觉得是在钻空子进行跨域,其实在PHP文件里面只需要加一段代码就可以跨域了,前端你该怎么写还是怎么写,post,get随便用:


header("Access-Control-Allow-Origin:*");


header("Access-Control-Allow-Origin:*"); //加的这一句即可实现前端的跨域
function getKey($key,$default=""){
    return trim(isset($_REQUEST[$key])?$_REQUEST[$key]:$default);
}
$id = getKey("id");
$conn = mysqli_connect("localhost","root","","test") or die("连接失败");
$conn->query("set names utf8");
$sql = "select * from data where ".$id." is not null";
$result = $conn->query($sql);
$arr = [];
while($row=$result->fetch_assoc()){
    array_push($arr,json_encode($row));
}
$json = json_encode($arr);  //json 数据
print_r($json);

  

PHP后台代码解决跨域问题

标签:问题   json   origin   header   names   代码   class   jsonp   from   

原文地址:http://www.cnblogs.com/mmykdbc/p/8024105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!