当前位置: 首页>>代码示例>>PHP>>正文


PHP coupon::LocationBatchAdd方法代码示例

本文整理汇总了PHP中coupon::LocationBatchAdd方法的典型用法代码示例。如果您正苦于以下问题:PHP coupon::LocationBatchAdd方法的具体用法?PHP coupon::LocationBatchAdd怎么用?PHP coupon::LocationBatchAdd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在coupon的用法示例。


在下文中一共展示了coupon::LocationBatchAdd方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: trim

        $data['business_name'] = trim($_GPC['business_name']) ? urlencode(trim($_GPC['business_name'])) : message('门店名称不能为空');
        $data['branch_name'] = urlencode(trim($_GPC['branch_name']));
        $data['category'] = trim($_GPC['category']) && trim($_GPC['subclass']) ? urlencode(trim($_GPC['category'])) . '-' . urlencode(trim($_GPC['subclass'])) : message('请选择门店分类');
        $data['province'] = trim($_GPC['reside']['province']) ? urlencode(trim($_GPC['reside']['province'])) : message('请选择门店所在省');
        $data['city'] = trim($_GPC['reside']['city']) ? urlencode(trim($_GPC['reside']['city'])) : message('请选择门店所在市');
        $data['district'] = trim($_GPC['reside']['district']) ? urlencode(trim($_GPC['reside']['district'])) : message('请选择门店所在区');
        $data['address'] = trim($_GPC['address']) ? urlencode(trim($_GPC['address'])) : message('门店详细地址不能为空');
        $data['longitude'] = trim($_GPC['baidumap']['lng']) ? trim($_GPC['baidumap']['lng']) : message('请选择门店所在地理位置经度');
        $data['latitude'] = trim($_GPC['baidumap']['lat']) ? trim($_GPC['baidumap']['lat']) : message('请选择门店所在地理位置维度');
        $data['telephone'] = trim($_GPC['telephone']) ? trim($_GPC['telephone']) : message('门店电话不能为空');
        $acid = intval($_GPC['acid']);
        load()->model('coupon');
        unset($data['acid']);
        $post[] = $data;
        $acc = new coupon($acid);
        $status = $acc->LocationBatchAdd($post);
        if (is_error($status)) {
            message($status['message'], referer(), 'error');
        }
        $data['acid'] = $acid;
        $data['uniacid'] = $_W['uniacid'];
        //插入数据库
        pdo_insert('coupon_location', $data);
        $id = pdo_insertid();
        message('添加门店成功', url('manage/location_list'), 'success');
    }
}
if ($do == 'display') {
    load()->model('coupon');
    $acid = 269;
    $acc = new coupon($acid);
开发者ID:ChainBoy,项目名称:wxfx,代码行数:31,代码来源:location.ctrl.php


注:本文中的coupon::LocationBatchAdd方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。