摘要:
在别人的基础上加以更改 function numberToChinese($num){ //判断$num是否存在 if(!$num) return '零圆'; //保留小数点后两位 $num = round($num, 2); //将浮点转换为整数 $tem_num = $num * 100; // 阅读全文
摘要:
$data = model('organization_area')->getListByNoPage($where, 'create_time asc');foreach ($data as $k => $v) { $v->append(['org_name']); $data[$k]['org_ 阅读全文
摘要:
/** * PHP发送Json对象数据 * @param $url 请求url * @param $jsonStr 发送的json字符串 * @return array */public function http_post_json($url, $jsonStr){ $ch = curl_init 阅读全文
摘要:
/*微信小程序的配置信息微信商户信息*/ public function __construct(){ parent::__construct(); $this->OrderModel = new OrderModel(); $this->config = [ 'app_id' => config( 阅读全文
摘要:
先来看一下问题 请求头有多余的参数 解决方案是配置允许 详细代码如下: // 可跨域域名列表$domains = [ 'http://localhost:8080', 'http://test.qqqqq.cn',]; $origin = isset($_SERVER['HTTP_ORIGIN']) 阅读全文
摘要:
主要有lay-filter属性,靠这个属性监听 <div class="layui-col-xs12 layui-col-sm4 layui-col-md4"> <div class="grid-demo grid-demo-bg1"> <div class="layui-form-item"> < 阅读全文
摘要:
<div class="panel-body"> <div class="row show-grid"> <div class="col-xs-6" >{if $orderInfo.mark}{$orderInfo.mark}{else}暂无备注信息{/if}</div> <button type= 阅读全文
摘要:
<script type="text/javascript">//复制活动地址 function shareUrl(id) { var url = 'http://H5/vote_1/index.html?activity_id='+id; copyToClipboard(url) } functi 阅读全文
摘要:
service.java public List<Menu> listAllMenuPage(PageData pd) throws Exception{ List<Menu> NewList = new ArrayList<Menu>(); Integer page = Integer.parse 阅读全文
摘要:
导入数据库 source /data/gh.sql; 生成所有的 语句 删除数据库中的所有表 SELECT concat('DROP TABLE IF EXISTS ', table_name, ';') FROM information_schema.tables WHERE table_sche 阅读全文