上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 133 下一页
摘要: //ok header(‘HTTP/1.1 200 OK'); //设置一个404头: header(‘HTTP/1.1 404 Not Found'); //设置地址被永久的重定向 header(‘HTTP/1.1 301 Moved Permanently'); //转到一个新地址 header 阅读全文
posted @ 2020-07-13 17:14 盘思动 阅读(357) 评论(0) 推荐(0)
摘要: public function ggg(){ $s = $this->cny('122'); echo $s; //壹佰贰拾贰元 } /*** *人民币大写转化;~~~ */ private function cny($ns) { static $cnums = array("零","壹","贰", 阅读全文
posted @ 2020-07-09 18:28 盘思动 阅读(241) 评论(0) 推荐(0)
摘要: <?php $a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); $result=array_flip($a1); print_r($result); ?> 阅读全文
posted @ 2020-07-08 20:24 盘思动 阅读(379) 评论(0) 推荐(0)
摘要: // 获取access_token public function _get_access_token() { $key = C('DB_NAME') . "_access_token_".C('APP_ID'); $red = Red::create(); if ($red->get($key)) 阅读全文
posted @ 2020-07-07 15:00 盘思动 阅读(1148) 评论(0) 推荐(0)
摘要: <!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title>art-template例子</title> <script src="art-template.js"></script> </head> <body> <div id="con 阅读全文
posted @ 2020-07-02 15:22 盘思动 阅读(642) 评论(0) 推荐(0)
摘要: <div class="layui-form-item"> <label for="L_name" class="layui-form-label"> <span class="x-red">*</span>审批类型 </label> <div class="layui-input-inline"> 阅读全文
posted @ 2020-07-02 15:18 盘思动 阅读(5892) 评论(0) 推荐(0)
摘要: ES6数组新增方法 Array.from 作用: 把类数组(获取一组元素、arguments…) 对象转成数组 个人观点: 具备 length这个东西,就靠谱 1、字符串转数组(个人感觉有些类似于arr.split("")): let str = "hello"; console.log(Array 阅读全文
posted @ 2020-06-22 15:49 盘思动 阅读(718) 评论(0) 推荐(0)
摘要: SELECT TABLE_NAME,DATA_LENGTH,INDEX_LENGTH,(DATA_LENGTH+INDEX_LENGTH) as length,TABLE_ROWS,concat(round((DATA_LENGTH+INDEX_LENGTH)/1024/1024,3), 'MB') 阅读全文
posted @ 2020-06-20 15:44 盘思动 阅读(939) 评论(1) 推荐(0)
摘要: 在使用mysql数据库过程中,遇到了错误ERROR 1146 (42S02):Table doesn’t exist,经过了两天,终于解决了这个问题。引起该错误的原因不同,对应的解决方法也不同。这里只针对我的情况进行一下说明。可能写的比较乱,希望你慢慢看,下面是我整个从犯错误到解决问题的整个过程,有 阅读全文
posted @ 2020-06-15 14:14 盘思动 阅读(2117) 评论(0) 推荐(0)
摘要: 最近新安装ubunut sudo apt-get update 命令报错问题....原因国外ubuntu镜像下载慢,或者不让下载了.. 解决办法: 切换到国内源 1.sudo cp /etc/apt/sources.list /etc/apt/sources_default.list 2.sudo 阅读全文
posted @ 2020-06-10 16:20 盘思动 阅读(4513) 评论(1) 推荐(1)
上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 133 下一页