imgurl/application/controllers/Api.php

20 lines
627 B
PHP
Raw Normal View History

2019-04-11 09:45:38 +00:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Api extends CI_Controller{
//获取图片数据
2019-04-11 14:23:11 +00:00
public function found($type = 'all'){
2019-04-11 09:45:38 +00:00
//允许跨域访问
header("Access-Control-Allow-Origin: *");
//返回json类型
header('Content-Type:application/json; charset=utf-8');
//加载模型
$this->load->model('query','',TRUE);
//查询图片
$datas = $this->query->found_img($type,1);
$json = json_encode($datas);
echo $json;
}
}
?>