php增删改查例子下载,thinkphp 入门实例源码(增删改查)下载

【实例简介】

【实例截图】

ea743146e3cbf6e82faabf3ae3eb0d50.png

75919d914a122560196131c9f9b3b3af.png

【核心代码】

namespace Home\Controller;

use Think\Controller;

class IndexController extends Controller {

//展示页面

public function index(){

$house=M("json");

$res= $house->select();

$url="http://api.map.baidu.com/telematics/v3/weather?location=%E6%B7%B1%E5%9C%B3&output=json&ak=nfczRD5nihKuHViUZ8ggkUGC";

//获得网站的JSON数据

$data=file_get_contents($url);

//把josn数据转化为数组

$json=json_decode($data,true);

//获得一个二维数组

$arr=$json['results']['0']['index'];

//dump($arr=$json['results']['0']['index']);

//dump($json['results']);

//转化为一位数组

foreach ($arr as $key => $v) {

//只取2个字段加入数据库, 有很多字段不用全部加

$data=array(

"title"=> $v['title'],

"tipt"=> $v['tipt'],

);

}

$house->add($data);

$this->assign("res",$res);

$this->display();

}

//增加界面

public function add(){

$this->display();

}

public function addpro(){

$house=M("json");

$data=array(

'tipt' =>I("post.tipt"),

'title' =>I("post.title"),

);

if($house->data($data)->add()){

$this->success('增加成功', 'index');

}else{

$this->error("增加失败");

}

}

//修改

public function edit(){

$house=M("json");

$id=I("get.id");

$data=array(

"id"=>$id

);

$res= $house->where($data)->find();

$this->assign("res",$res);

$this->display();

}

public function editpro(){

$house=M("json");

$data=array(

"id"=>I("post.id"),

'tipt' =>I("post.tipt"),

'title' =>I("post.title"),

);

if($house->data($data)->save()){

$this->success('修改成功', 'index');

}else{

$this->error("修改失败");

}

}

//删除

public function del(){

$id=I("get.id");

$house=M("json");

$data=array(

"id"=>$id

);

if($house->where($data)->delete()){

$this->success('删除成功', 'index');

}else{

$this->error("删除失败");

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值