摘要: phpqrcode类库官网下载地址:https://sourceforge.net/projects/phpqrcode/ 1.我们先看看php是怎么生成二维码的 1.首先我们先下载一下 phpqrcode 类库。 2.下载完后解压我们会发现 phpqrcode文件夹 里面有一堆的文件,但是我们只需 阅读全文
posted @ 2020-03-17 16:52 xiondun 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 本文实例讲述了php获取文件mime类型的方法。分享给大家供大家参考。具体如下: 1.使用 mime_content_type 方法 1 string mime_content_type ( string $filename ) Returns the MIME content type for a 阅读全文
posted @ 2020-03-17 16:37 xiondun 阅读(550) 评论(0) 推荐(0) 编辑
摘要: /** * 将秒数转换成时分秒 * * @param 秒数 $seconds * @return void */ function changeTimeType($seconds) { if ($seconds > 3600) { $hours = intval($seconds / 3600); 阅读全文
posted @ 2020-03-17 11:06 xiondun 阅读(2585) 评论(0) 推荐(0) 编辑
摘要: function authority($auth) { // pre($_SESSION); // pre(Session::get('role')); // $role_arr=explode(',', $_SESSION['role']); $role_arr = Session::get('r 阅读全文
posted @ 2020-03-17 10:33 xiondun 阅读(125) 评论(0) 推荐(0) 编辑