873 篇
建站知识总结与分享
搜索“php”
thinkphp5内置验证规则
taotaoit 0 0
643 0 2024-01-15 ThinkPHP5.1
thinkphp5内置验证规则 https://www.kancloud.cn/manual/thinkphp5_1/354107
thinkphp5,有权限才能下载文件
taotaoit 0 0
681 0 2024-01-15 ThinkPHP5.1
thinkphp5,有权限才能下载文件 需求:留言之后才能下载文件,否则不能下载 实现:留言后,记录ip地址,下载前先检查ip地址是否存在, 代码: 1,模板代码 {notempty name='$details.serviceFile'} <a class="xiaz...
thinkphp5获取系统根目录
taotaoit 0 0
700 0 2024-01-13 ThinkPHP5.1
1,自定义函数 application\common.php里面写上自定义函数 /** * 获取系统根目录 */ function ZHTRootPath(){ return dirname(dirname(__File__)); } 路径类似: D:\phpstudy_pro\WWW\xiangshi.cc ...
thinkphp,jquery自定义添加属性
taotaoit 0 0
701 0 2024-01-12 ThinkPHP5.1
效果图 实现: 1,html代码 <tbody id="spec1Tbody"> </tbody> <tbody> <tr> <th> <a href=...
thinkphp5模板中取余
taotaoit 0 0
626 0 2024-01-09 ThinkPHP5.1
thinkphp5模板中取余 1,在volist标签中,可以设置mod <volist name="list" id="vo" key="i" mod="5"> <eq name="mod" value="0"><tr></eq> <td>{$vo.name}<...
thinkphp5.0关闭日志写入
taotaoit 0 0
683 0 2023-12-26 ThinkPHP5.1
thinkphp5.0关闭日志写入 tp5.1关闭日志可以直接在config/log.php设置 'close'       => false, 但tp5.0配置文件都在application/config.php里面 好像并不能通过'close' ...
thinkphp模板中,session存储的时间戳格式化
taotaoit 0 0
688 0 2023-12-20 ThinkPHP5.1
thinkphp模板中,session存储的时间戳格式化 时间戳存在session中,在模板中使用 {:session('ZHT_USER.lastTime')} 显示:1703033428 想显示日期格式怎么办? {:date('Y-m-d H:i:s',session('ZHT_USER.lastTi...
thinkphp5.1验证码不显示,提示:imagettftext(): Could not find/open font
taotaoit 0 0
728 0 2023-12-01 ThinkPHP5.1
thinkphp5.1验证码不显示,提示:imagettftext(): Could not find/open font 用的是西部数码的虚拟主机,以前没事,为什么这次有问题, 网上查找: 解决方案:找了很久,发现是GD库加载字体文件时,需求提供绝对路径,给font路径用realpath()将相对路径转成...
thinkphp5.1上传png图片,提示:上传文件MIME类型不允许!
taotaoit 0 0
801 0 2023-11-30 ThinkPHP5.1
thinkphp5.1上传png图片,提示:上传文件MIME类型不允许! 明明允许了png图片上传,为什么提示出错呢? 换一张png图片可以,说明这张png图片有问题。 全站搜索“上传文件MIME类型不允许!” 找到:E:\phpstudy_pro\WWW\sanyi.cc\thinkphp\lang\...
php数组,根据键值获取键
taotaoit 0 0
698 0 2023-11-29 PHP
php数组,根据键值获取键 <?php $array = array("a" => 1, "b" => 2, "c" => 3); $key = array_search(2, $array); echo $key; // 输出 "b" ?> 判断 <?php $array = array...
thinkphp5.1模块单独设置session
taotaoit 0 0
744 0 2023-11-23 ThinkPHP5.1
thinkphp5.1模块单独设置session 注:测试的时候,最后每次f12键,打开浏览器的调试模式,“应用》存储》cookie》网址”,右键删除PHPSESSID,然后再测试,否则可能有问题 1,一个网站,后台希望长期保持登录状态 所以更改config\session.php 'expire'=&...
PHP判断字符串中是否包含数组其中的一项
web 0 0
739 0 2023-11-21 PHP
方法一: $val="保暖羽绒服大甩价";$arr=array("羽绒服","毛呢大衣","毛衣","大甩价"); $exist = in_array(true, array_map(function($r) use($val) { return strpos($val, $r) !== false; }, $arr))...
php检测字符串是否包含字符串
web 0 0
726 0 2023-11-21 PHP
1. strstr strstr() 函数搜索一个字符串在另一个字符串中的第一次出现。 该函数返回字符串的其余部分(从匹配点)。如果未找到所搜索的字符串,则返回 false。 /*如手册上的举例*/ $email = 'user@example.com'; $domain = strstr($email, '@')...
<b>Deprecated</b>: Array and string offset access syntax with curly braces is deprecated in
taotaoit 0 0
575 0 2023-11-01 PHP
Uncaught transport.js/parseResult() error: can't parse to JSON. <br /> <b>Deprecated</b>:  Array and string offset access syntax w...
Fatal error: Uncaught Error: Call to undefined function Think\C() in Library\Think\Think
taotaoit 0 0
932 0 2023-10-23 ThinkPHP
解决方法参考 https://blog.csdn.net/matthis_meng/article/details/120286461 我出现的问题是: thinkphp3.2, 因为Runtime目录权限被锁死了,不能增删改,所以导致这个错误。 不知道是自己误操作,还是被入侵,导致目录权限被锁死,解除锁...
vscode代码格式化PHP Intelephense如何配置花括号不换行?
web 0 0
998 0 2023-10-13 VSCode
vscode代码格式化PHP Intelephense如何配置花括号不换行? 1,打开设置,搜索 Format: Braces 点击intelephense,选择k$r
关于本站

“最难不过坚持”

本人承接扒站仿站,php网站维护,病毒查杀,网站编辑,网站改版,html制作

有需要网站维护,改版,病毒查杀,网站编辑,网站备案,html制作等相关的工作可以联系我。
本人有多年相关工作经验,也可提供免费咨询,交个朋友。
有需要探讨问题的朋友,也可以加我微信,共同探讨!
微信:15011482830 QQ:408917339

7448103 2655 39
最新评论
https://jueru.net/
评 留言
:weixiao:
评 留言
:shuijiao: :weiqu: :zhenbang: :leng:
评 留言
:yiwen: :yiwen: :yiwen: :yiwen:
评 EasySass: could not generate CSS file. See Output panel for details.
这个业务逻辑多少都有点奇怪了,阅读浏览次数增值在新闻详情页的控制器方法里setInc,这怎么还写进模型事件里了。如果非要用onAfterRead也可以,把新闻文章的内容单独分出来一个news_content表,然后把它和news做关联,然后给news_content表的onAfterRead事件做增值处理,这样点进新闻页内查询到文章内容时才会触发它。
评 TP6模型事件-查询后onAfterRead不好用
文章标签更多
ThinkPHP (254)
Mysql (58)
DedeCms (33)
jQuery (67)
证件照 (1)
setInc (4)
setDec (4)
onclick (5)