上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: /** * 设置文章内容图片,上传到本地服务器处理 * @param $content 文章内容 * @return bool */ public function setContentImg($content) { // 1.先正则匹配出所有的图片url $pattern = '#<img(.+? 阅读全文
posted @ 2023-05-05 11:44 潘潘潘的博客 阅读(70) 评论(0) 推荐(0) 编辑
摘要: /* * 功能:PHP图片水印 (水印支持图片或文字) * 参数: * $groundImage 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式; * $waterImage 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式; * $waterText 文字水印,即把 阅读全文
posted @ 2023-05-05 11:42 潘潘潘的博客 阅读(83) 评论(0) 推荐(0) 编辑
摘要: /** * * 按照指定的尺寸压缩图片 * * @param $source_path 原图路径 * * @param $imgWidth 目标宽度 * * @param $imgHeight 目标高度 * * @return bool|string */ function resize_image 阅读全文
posted @ 2023-05-05 11:42 潘潘潘的博客 阅读(135) 评论(0) 推荐(0) 编辑
摘要: /* * 阿里云oss图片上传 * $img_url 文件路径 * $aliyun_config 阿里云配置 * @return array */ public function aliyunUpload($save_path, $aliyun_config, $img_url) { // 阿里云配 阅读全文
posted @ 2023-05-05 11:41 潘潘潘的博客 阅读(41) 评论(0) 推荐(0) 编辑
摘要: /* * 七牛云文件上传 * $img_url 文件路径url * $qiniu_config 七牛云配置 * @return array */ public function qiniuUpload($save_path, $qiniu_config) { $secretKey = $qiniu_ 阅读全文
posted @ 2023-05-05 11:40 潘潘潘的博客 阅读(148) 评论(0) 推荐(0) 编辑
摘要: $version1 = '1.0.5'; $version2 = '1.15.0'; // 自定义比较函数 function compare_versions($v1, $v2) { $ver1 = explode('.', $v1); $ver2 = explode('.', $v2); // 将 阅读全文
posted @ 2023-04-25 15:20 潘潘潘的博客 阅读(91) 评论(0) 推荐(0) 编辑
摘要: /** * 获取每日数据统计 */ public function getOneDayCountLog() { // 本月所有天数 for ($i = 1; $i < date('t')+1; $i++) { $monthDay['revenue_money_day'] = ''; $monthDa 阅读全文
posted @ 2023-04-21 14:51 潘潘潘的博客 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1.服务类的调用 <?php /** * es数据查询 * * @return void */ // public function esSeachData($keywords, $page = 1) public function esSeachData() { $page = 1; // 分页需 阅读全文
posted @ 2023-03-27 10:47 潘潘潘的博客 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.导入公共签名密钥: rpm --import ./GPG-KEY-elasticsearch or apt-key add ./GPG-KEY-elasticsearch 如果出现报错,解决方案: wget https://packages.elastic.co/GPG-KEY-elastics 阅读全文
posted @ 2023-03-17 16:34 潘潘潘的博客 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 直接看代码把: $pattern = '#<img(.+?)src\s*=\s*[\"|\']([^"|^\']+?)[\"|\']([^>]*?)>#'; preg_match_all($pattern, $content, $match); $url_list = $match[2];$url_ 阅读全文
posted @ 2022-11-08 11:52 潘潘潘的博客 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页