会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
撒浪、嘿哟
博客园
首页
新随笔
联系
订阅
管理
2021年6月1日
PHP校验键值是否在数组汇总
摘要: key_exists('key',$arr); array_key_exists('key',$arr) 避免使用isset和empty 校验数组元素是否存在。
阅读全文
posted @ 2021-06-01 16:15 撒浪、嘿哟
阅读(54)
评论(0)
推荐(0)
2021年5月31日
PHP移除指定数组元素个数并获取 移除的元素
摘要: $arr=["php",'java','go','python','vue','js','h5']; $arrNew=array_splice($arr,0,2); var_dump($arrNew); array(2) { [0]=> string(3) "php" [1]=> string(4)
阅读全文
posted @ 2021-05-31 10:51 撒浪、嘿哟
阅读(138)
评论(0)
推荐(0)
2021年5月19日
可替代CURL请求的包guzzle
摘要: 1.通过composer 引入到项目中 composer require guzzlehttp/guzzle:~6.0 2.构建请求参数: $data = array("name"=>"callback" , "value"=>"test"); $rescult = http_build_query
阅读全文
posted @ 2021-05-19 09:17 撒浪、嘿哟
阅读(151)
评论(0)
推荐(0)
2021年5月18日
mysql 查询手机号中间4位替换位****
摘要: 一、(推荐)select insert(mobile,4,4,'****')as mobile from users;二、 select replace(mobile,substr(mobile,4,4),'****') as mobile from users;
阅读全文
posted @ 2021-05-18 16:50 撒浪、嘿哟
阅读(777)
评论(0)
推荐(0)
php 如何使用yeid批处理
摘要: public function cursor($count = 50, $column = null, $order = "asc") { $this->chunk($count, function ($ret) { foreach ($ret as $item) { yield $item; }
阅读全文
posted @ 2021-05-18 16:36 撒浪、嘿哟
阅读(259)
评论(0)
推荐(0)
php 下载远程图片
摘要: $url="https://xxx.xxx.com/uploads/images/img/202101/08/cy_1610083365_1agwoAwBXl.jpg"; $filename = basename($url); $headers = get_headers($url, 1); $fi
阅读全文
posted @ 2021-05-18 16:34 撒浪、嘿哟
阅读(218)
评论(0)
推荐(0)
linux 查看文件并查找文件内容
摘要: 如下命令: cat ** | grep "****"其中**表示要查看的文件, grep"****"表示查看文件内容
阅读全文
posted @ 2021-05-18 16:32 撒浪、嘿哟
阅读(415)
评论(0)
推荐(0)
php 如何实现字符串和数字反转函数
摘要: PHP的内置函数:strrev()
阅读全文
posted @ 2021-05-18 16:31 撒浪、嘿哟
阅读(85)
评论(0)
推荐(0)
php 如何使用敏感词过滤
摘要: php-DFA-filterWord github:https://github.com/FireLustre/php-dfa-sensitive
阅读全文
posted @ 2021-05-18 16:29 撒浪、嘿哟
阅读(88)
评论(0)
推荐(0)
php 批量下载远程图片并压缩
摘要: $urlArr=['https://files.dianlinet.com/uploads/images/img/202101/08/cy_1610083365_1agwoAwBXl.jpg','https://files.dianlinet.com/uploads/images/img/20210
阅读全文
posted @ 2021-05-18 16:26 撒浪、嘿哟
阅读(387)
评论(0)
推荐(0)
下一页
公告