php 后台添加数据,后台添加新数据,添加成功就像百度推送本条数据的前台URL,修改 Backend.php 文件称这样对不对呢 ?请大神指点...

/*** 添加

*/

public function add()

{

if ($this->request->isPost()) {

$params = $this->request->post("row/a");

if ($params) {

if ($this->dataLimit && $this->dataLimitFieldAutoFill) {

$params[$this->dataLimitField] = $this->auth->id;

}

try {

//是否采用模型验证

if ($this->modelValidate) {

$name = str_replace("\\model\\", "\\validate\\", get_class($this->model));

$validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;

$this->model->validate($validate);

}

$result = $this->model->allowField(true)->save($params);

if ($result !== false) {

$this->success();

//提交数据URL给百度,拼接成前台url 提交百度

$id=db('school')->max('id');

$data = db('school')->field(['id','name','image','keywords','description'])->find($id);

//dump($data);

$urls = array(

//拼接成前台url 提交百度

'http://www.example.com/$data['id'].html',

);

$api = 'http://data.zz.baidu.com/urls?site=www.example.com&token=zj51J667TdudnQT4&type=amp';

$ch = curl_init();

$options = array(

CURLOPT_URL => $api,

CURLOPT_POST => true,

CURLOPT_RETURNTRANSFER => true,

CURLOPT_POSTFIELDS => implode("\n", $urls),

CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),

);

curl_setopt_array($ch, $options);

$result = curl_exec($ch);

echo $result;

//提交数据URL给百度

} else {

$this->error($this->model->getError());

}

} catch (\think\exception\PDOException $e) {

$this->error($e->getMessage());

} catch (\think\Exception $e) {

$this->error($e->getMessage());

}

}

$this->error(__('Parameter %s can not be empty', ''));

}

return $this->view->fetch();

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值