PHP
松垮的屁兜
这个作者很懒,什么都没留下…
展开
-
【TP】打印sql总结
tp打印sql总结原创 2022-12-30 11:26:48 · 842 阅读 · 1 评论 -
【TP-whereOr】tp框架where+whereOr结合使用
tp框架where+whereOr结合使用原创 2022-12-30 11:11:18 · 1217 阅读 · 0 评论 -
【PHP】curl_post/curl_get
curl_post/curl_get原创 2022-08-24 09:21:50 · 139 阅读 · 0 评论 -
【PHP】百度转高德经纬度
百度转高德经纬度原创 2022-08-24 09:16:28 · 490 阅读 · 0 评论 -
【PHP】tp6多表连接查询
tp6多表连接查询原创 2022-07-07 17:00:01 · 1575 阅读 · 0 评论 -
composer安装报错:No composer.lock file present.
composer安装报错:No composer.lock file present.原创 2022-06-24 11:52:38 · 6804 阅读 · 0 评论 -
WSL2.0安装
WSL是windows子系统,可以运行Linux,WSL2.0对比1.0具备完整的Linux内核、托管VM和完全的系统调用兼容性win+r输入winver检查windows版本,需要windows10 18917或更高版本下载64x的linux内核升级包并安装设置wsl默认版本安装Ubuntu20.04LTS,打开Microsoft Store,找到Ubuntu 20.04LTS点击安装即可,安装完成后打开设置初始用户名和密码更换linux子系统的软件源并更新因为默认的软件源是原创 2022-06-23 18:24:55 · 827 阅读 · 0 评论 -
【腾讯cos对象存储】hyperf腾讯cos上传,腾讯cos sdk使用
hyperf2.2文档地址 链接: https://hyperf.wiki/2.2/#/composer文档 链接: https://wiki.swoole.com/腾讯cos对象存储文档 链接: https://cloud.tencent.com/document/product/436/12266#composerhyperf框架文件系统+腾讯cos使用文件系统组件集成了 PHP 生态中大名鼎鼎的 League\Flysystem,安装:composer require hy.原创 2022-01-18 11:17:01 · 1896 阅读 · 1 评论 -
【PHP】composer依赖管理工具
每天一点新知识,composer来了~原创 2021-12-23 17:32:39 · 254 阅读 · 0 评论 -
【PHP】RBAC权限管理
account总用户表字段:idact_uuidact_openidact_nameact_nick_nameact_pwdact_phoneact_mobileact_emailact_genderact_profileact_statuscreate_timeupdate_timedelete_time由account表分发而来user用户表字段:idorg_uuidact_uuiduser_uuiduser_idcardis_owner:是否拥有者u.原创 2021-12-23 14:25:10 · 564 阅读 · 0 评论 -
【PHP】常用方法整理
<?phpdeclare(strict_types=1);namespace App\Model;use Hyperf\Snowflake\IdGeneratorInterface;use Hyperf\Utils\ApplicationContext;use Hyperf\Utils\Str;use PhpOffice\PhpSpreadsheet\IOFactory;use \PhpOffice\PhpSpreadsheet\Spreadsheet;use PhpOffic原创 2021-11-05 16:58:37 · 440 阅读 · 0 评论 -
【SQL】sql数据过滤(不等于某数据)问题
需求:取表中全部数据,其中过滤掉指定字段的值原生sql-where not exists:过滤h_article表中art_status = -1 and add_user_id != 1的数据,获取剩余的数据select * from h_article a where not exists(select * from h_article b WHERE a.art_uuid = b.art_uuid and art_status = -1 and add_user_id != 1hype原创 2021-11-04 10:01:50 · 2172 阅读 · 0 评论 -
【PHP】单点登录流程图
原创 2021-09-15 10:45:57 · 182 阅读 · 0 评论 -
【PHP】高德地图经纬度和地址转换
/** * 根据地址 获取经纬度 * @param $address * @return mixed */function addresstolatlag($address){ $url='http://restapi.amap.com/v3/geocode/geo?address='.$address.'&key=80051202ff5b334bd3c94e18d20a'; if($result=file_get_contents($url)) {原创 2021-05-06 16:28:25 · 651 阅读 · 0 评论 -
【PHP】经纬度计算距离,按距离排序
方式一:PHP/** *求两个已知经纬度之间的距离,单位为千米(测试) *@param lng1,lng2 经度 *@param lat1,lat2 纬度 *@return float 距离,单位千米 **/ public function getDistance($lng1, $lat1, $lng2, $lat2) { 方法一: // $earthRadius = 6367000; //approximate r原创 2021-04-29 17:20:53 · 804 阅读 · 1 评论