php开发
这家伙很懒,还没填写该栏目的介绍呢~
官方文档:
https://doc.thinkphp.cn/v8_0/create_model.html#%E8%8E%B7%E5%8F%96%E8%87%AA%E5%A2%9Eid
官方获取自增长组件的方式很简单,就是create以后,直接获取返回对象的属性就可以了。
如下:
$info = ArticleInfo::create($data);
$articl...
php开发一个诡异的Thinkphp8的验证场景的错误,报错内存溢出Allowed memory size of
代码:
public function sceneDelete()
{
return $this->only(['id'])->append('id', 'checkAbleDelete');
}
这是一个删除场景的验证,id自带验证规则如下:
protected $rule = [
'id' =>...
php开发PHP8.2提示,Creation of dynamic property
以前得DAO,很多属性是动态的,就会报错。
网上很多解决方案,但是很多都是错的
很多是在类前加#[AllowDynamicProperties],而这个就是错的#[AllowDynamicProperties]
class User {
private int $uid;
}
$user = new User();
$user->name...
php开发PHP的GD库生成发光文字
用到一个开源库:
https://imagettftextblur.agjgd.org/examples/shadow/
github地址:https://github.com/andrewgjohnson/imagettftextblur
使用示例:
//引入文字发光
include __ROOTDIR__."libs/imagettftextblur/ima...
php开发oracle多字段排序,某个字段指定值排最后
参考:
https://zhidao.baidu.com/question/620647941694492292.html
语句就是:
orderby("replace(fh_sign_contract.status_flag,2,99) asc,fh_sign_contract.updated desc");
字符串排序还是很坑的。
php开发easywechat6推送动态模板消息
需求,从接口获取模板列表,并对获取到模板进行赋值
尝试多次,主要在构造data数组的地方:
$app=util::getWeiXin();
$api = $app->getClient();
$response = $api->post('/cgi-bin/template/get_all_private_template');
...
php开发thinkphp8 $request->controller()在中间件中获取不到值
在官方的文档中,中间件的定义部分,特别是应用中间件的定义,是在应用目录下定义middleware.php文件
并在文件中声明中间件即可。
实际操作时,会走中间件,但是,通过$request->controller()无法获取到控制器名称。
搜了一下,发现是需要在应用目录下创建config目录,并在里面定义route.php文件,在其中初始化中间件,这个有点奇怪,...
php开发WeCenter V4.1.0后台,话题管理,编辑已有话题报错:htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
后台,话题管理,编辑已有话题报错:htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
调试信息提示文件:
at FormBuilder->fetch() in Topic.php line 247
完整路径:
app/backend/content/Topi...
php开发本地PHP8.1配置wecenter4.1,点击个人中心的账号设置报错
报错信息:
htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
经检查发现,是模板中对值进行了转换,但默认初始值是null,因此需要转换一下
打开文件:app/common/controller/Frontend.php
第45行下面,添加:
if (is...
php开发本地PHP8.1配置wecenter4.1,点击首页的热门标签报错
报错信息:
SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is not function...
php开发本地PHP8.1配置wecenter4.1报错:SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is
登录以后,点击个人主页报错:
SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is not...
php开发本地PHP8.1配置wecenter4.1报错:[error] [0]Class "thinkfacadeFilesystem" not found
报错位置:
appcommonlibraryhelperUploadHelper.php:226
这是因为引入了thinkphp的Filesystem类,但是下载的压缩包里面没有包含。
修改composer.json,加入
"topthink/think-filesystem":"^1.0",
如图:
改成如图后,再composer update即可。
...
php开发本地PHP8.1配置wecenter4.1报错:[error] [0]thinkRequest::server(): Argument #2 ($default) must be of type string, null given,
报错位置:
appcommoncontrollerPlugins.php on line 89
找到文件位置,发现是从cookie中获取token时,没有初始化,导致的报错。
于是改一改:
$cookie_token=cookie('token');
$cookie_token=$cookie_token?$cookie_token:'';
...
php开发本地PHP8.1配置wecenter4.1报错:[error] [8192]explode(): Passing null to parameter #2 ($string) of type string is deprecated
只要打开了调试模式,定位到了文件,就可以解决了。
报错文件位于:
appcommonlibraryhelperUserAuthHelper.php:58
找到文件,在报错代码前面加一句:
$authArr = is_null($authArr)?'':$authArr;
就不再报错了。
php开发本地配置WeCenter V4.1.0的第三个问题:substr(): Passing null to parameter #1 ($string) of type string is deprecated
这个报错,和第一个报错类似,是在后台管理模块中,报错的。
报错的文件在公共文件,appfunction.inc.php:255行
找到这里,可以看到:
// 密匙c用于变化生成的密文
$key_c = $operation == 'DECODE' ? substr($string, 0, $c_key_length) : substr(md5(micr...
php开发本地配置WeCenter V4.1.0的第二个问题,页面404,无法登录后台
安装好,解决了首页报错的问题,访问页面上其他连接,全部报错,后台无法登录
可以很肯定是重写的问题,看了下下载的压缩包自带的apache重写规则,里面为空,于是补上thinkphp的重写规则
写入到public目录下的.htaccess文件中
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multivie...
php开发本地配置wecenter4.1.0版本报错:htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated
之前一直使用3.*的,最近想着看看最新版本,除了底层框架换成了thinkphp6之外,授权变化也挺大的。
不知道还能不能免费用了,不去版权的话,反正个人用吧。
在本地安装跑起来,就给了我一个下马威。
安装没有任何错误,也没说PHP版本不合适,当然我是PHP8.1.27,比较高的版本了。
安装完成,首页就报错:
htmlspecialchars(): Pass...
php开发关于MySQL写入表情符号,提示:Incorrect string value: 'xF0x9FxA7xA7xE5x8F...' for column的问题
上一篇文章:
Uncaught mysqli_sql_exception: Incorrect string value: 'xF0x9Fx91x86xE5x85...' for column (144d.com)
文章中写了,改了数据库的字符集,字段的字符集,写入还是报错,当时没注意在执行查询的时候,用了set names
然后这个set names还设置的是utf8
经测试,...