摘要:
MySQL手册中find_in_set函数的语法解释: FIND_IN_SET(str,strlist) str 要查询的字符串 strlist 字段名 参数以”,”分隔 如 (1,2,6,8,10,22) 查询字段(strlist)中包含(str)的结果,返回结果为null或记录 假如字符串str 阅读全文
摘要:
# Action目录结构 ```shell ├── BasicSetting 基础设置 │ ├── Callrepairs 保修故障分类设置 │ ├── PropertyInfo 物业信息管理 │ └── Suggest 投诉建议分类设置 ├── CommunityManagement 社区管理 │ 阅读全文
摘要:
1、git clone 项目 2、查看php是否安装swool扩展 未安装 安装 (注意 如果php是在MAMP中的 ,MAMP的php.ini 和 php.ini都要更新) 在对应的php.ini中 添加: extension=swoole.so swoole.use_shortname = of 阅读全文
摘要:
/Applications/MAMP/bin/php/php7.4.2/bin/php /usr/local/bin/composer update -vvv 阅读全文
摘要:
/** @JsonRpcMethod- delFile*/ public function delFile($data){ if(empty($data->filename)){ throw new Exception('参数错误',3104); }else{ $filename = $data-> 阅读全文
摘要:
// ini_set('display_errors',1); //错误信息 // ini_set('display_startup_errors',1); //php启动错误信息 阅读全文
摘要:
原文链接:https://www.cnblogs.com/liuzheyan/p/11447300.html 1.git remote 不带参数,列出已经存在的远程分支 2.git remote -v | --verbose 列出详细信息,在每一个名字后面列出其远程url,此时, -v 选项(译注: 阅读全文
摘要:
Yii 查询 find 条件不等于null or 不能等空$postware = Postware::find()->select(['house_num'])->where(['account_id' => $account_id, 'send_way' => 4])->andFilterWher 阅读全文
摘要:
MySql select iphone from likeiphone where iphone LIKE '150%%38395' 输出结果 iphone 150***38395 阅读全文
摘要:
<?php /** * _______ _______ _______ * | || || | * | _____||_ _|| _ | * | |_____ | | | | | | * |_____ | | | | |_| | * _____| | | | | | * |_______| |___ 阅读全文