开启设置short_open_tag 设为 On是因为帝国模版文件很多通过<?=?>输出php变量的原因。在php的配置文件(php.ini)中有一个short_open_tag的值,开启以后可以使用PHP的段标签:(<? ?...
blzxadmin179 2年前 (2018-10-27) 60℃ 暂无评论 4喜欢
$imgUrl = ROOT_PATH . 'public/uploads/' . Db::name('ad')->where('id', $id)->value('img'); try { unlink($imgUr...
blzxadmin179 2年前 (2018-09-08) 37℃ 暂无评论 3喜欢
文件夹名称简介app应用程序的业务逻辑代码存放文件夹app/Console存放自定义 Artisan 命令文件app/Http/Controllers存放控制器文件app/Http/Middleware存放「中间件」文件bo...
blzxadmin179 2年前 (2018-08-30) 27℃ 暂无评论 6喜欢
生成不重复的订单id public function getOrderId($prefix = 'DD') { return $prefix . (strtotime(date('YmdHis', time()))) . substr(micro...
blzxadmin179 2年前 (2018-08-29) 65℃ 暂无评论 5喜欢
<?php$query="select zid,cid,id,classid,mid,isgood,newstime from {$dbtbpre}enewsztinfo where ztid='1' order by newstime desc limit 6";$sql=$empire->quer...
blzxadmin179 2年前 (2018-08-21) 47℃ 暂无评论 6喜欢
(($_POST)) $_POST ($_POST);(($_GET)) $_GET ($_GET);(($_COOKIE)) $_COOKIE ($_COOKIE);(($_SESSION)) $_SESSION ($_SESSION);(($_FILES)) $_FILES ($_FILES);() {...
blzxadmin179 2年前 (2018-07-24) 76℃ 暂无评论 7喜欢
今天在做商城会员等级自动验证的时候 发现会员等级名称唯一性验证有问题。添加的时候没有问题,再次编辑就会表示已存在。原来编辑的时候,没有更改名称,但是验证的时候,把自己给...
blzxadmin179 2年前 (2018-07-22) 48℃ 暂无评论 6喜欢
以byte为单位表示的文件大小转化为可读性的表示PHP写法来源于网络。分享个支持任意大数,而且相当简单的一段代码。function formatFileSize($fileSize){ $unit = array(&#...
blzxadmin179 2年前 (2018-07-05) 54℃ 暂无评论 8喜欢
在PC模版文件头部加入如下js代码,其中uaredirect.js是百度提供的,可百度搜索找到下载地址<script src="/uaredirect.js" type="text/javascript"></script><script type="te...
blzxadmin179 2年前 (2018-07-01) 116℃ 暂无评论 5喜欢
在php开发中,有时候会遇到头疼的中文编码的处理问题。比如gbK转换为utf8,utf8转化为gbk等。下面就介绍一个php函数mb_convert_encoding()函数的使用。看它如何实现中文编码的...
blzxadmin179 2年前 (2018-05-24) 135℃ 暂无评论 8喜欢