PHP
安东尼_RD
这个作者很懒,什么都没留下…
展开
-
【TP6】Intervention\Image 创建多行文本图片
【代码】【TP6】Intervention\Image 创建多行文本图片。原创 2022-09-06 09:46:04 · 719 阅读 · 0 评论 -
TP6 H5文本正则替换代码预览
TP6 H5文本正则替换代码预览。原创 2022-09-02 16:38:51 · 271 阅读 · 0 评论 -
WARNING: [pool www] ACL set, listen.owner = ‘xxxx‘ is ignored
; When set, listen.owner and listen.group are ignored;listen.acl_users = apache;listen.acl_groups =原创 2022-01-17 14:39:25 · 1543 阅读 · 0 评论 -
php关闭进程 重启php-fpm
查看php进程ps -ef|grep php结束php进程kill -INT 840446启动php-fpm,进入php/sbin目录 重新加载配置文件php.ini启动php:./php-fpm -c /usr/local/php8/php.ini原创 2021-08-03 16:47:01 · 326 阅读 · 0 评论 -
PHP 多维数组转换一维数组 - php 多维数组下某个键下的值
实例数组 $arr = [ [ 'id' => 8, 'mst' => [ 'id' => 9, 'mast' => [ 'id' => 10 ] ] ], [ 'id' => 11, 'mst' => [ 'id' => 12, 'mast' => [ 'id' => 13 ] ] ], [ 'id' =>.原创 2021-04-28 16:39:37 · 130 阅读 · 0 评论 -
php 提取html 正文包含标点符号。
//提取正文function wp_strip_all_tags( $string, $remove_breaks = false ) { $string = preg_replace( '@<(script|style)[^>]*?>.*?</\\1>@si', '', $string ); $string = strip_tags( $string ); if ( $remove_breaks ) { $string = preg原创 2021-04-22 15:42:37 · 146 阅读 · 0 评论 -
PHP读取CSV为数组
/** * [ReadCsv 读取CSV为数组] * @作者:XQ * @添加时间: 2020-12-4T11:41:41+0800 * @param string $uploadfile [文件路径] */ public static function ReadCsv($uploadfile='') { setlocale(LC_ALL,'zh_CN'); $fil.原创 2020-12-04 11:40:43 · 168 阅读 · 0 评论 -
Intervention/image 图片处理扩展包的安装和使用
更加详细说明Intervention/image 是为 Laravel 定制的图片处理工具,它提供了一套易于表达的方式来创建、编辑图片。Demo 代码请见:https://github.com/zhengjinghua/est-image-...DemoDemo 截图Demo 运行请参照文档 如何利用 Homestead 快速运行一个 Laravel 项目.文章概览安装;修改配置信息;基础用法;特色功能.接下来是详细解说.安装1). 使用 composer 安装:com原创 2020-07-08 16:53:20 · 1494 阅读 · 0 评论 -
php 数据处理:数组根据某字段进行分组
/** * @description:根据数据 * @param {dataArr:需要分组的数据;keyStr:分组依据} * @return: */protected function dataGroup(array $dataArr,string $keyStr) :array{ $newArr=[]; foreach ($dataArr as $k => $val) { //数据根据日期分组 $newArr[$val[$keyStr]][]原创 2020-06-22 14:29:31 · 3842 阅读 · 0 评论 -
利用php gd or Imagick库把图片裁剪成圆形
主要这两种方法,记录一下:一、设置透明度function test($url,$path='./'){ $w = 110; $h=110; // original size $original_path= $url; $dest_path = $path.uniqid().'.png'; $src = imagecreatefromstring(file_get_contents($original_path));原创 2020-06-18 16:06:18 · 945 阅读 · 0 评论 -
Carbon 当前时间与明天凌晨的时间差
引入Carbonuse Carbon\Carbon;当前时间与明天凌晨的时间差(返回秒) //当前时间与明天凌晨的时间差(返回秒) public static function AmTdoa(){ $date = date('Y-m-d',strtotime('+1 day')); $carbon = Carbon::parse ($date); ...原创 2019-08-06 11:11:37 · 2217 阅读 · 0 评论 -
ThinkPhP 自定义 Exception 传参 data
创建文件 BaseException.php<?phpnamespace app\exception;class BaseException extends \Exception{ private $data; public function __construct($message = null, $code = 0, $data=null, \Excep...原创 2019-08-07 10:43:35 · 473 阅读 · 0 评论 -
PHP去除所有的空格
1、去除两边的空格 trim($arr)2、正则匹配去除所有的空格 preg_replace('# #','',$goodid)原创 2019-08-09 14:50:11 · 181 阅读 · 0 评论 -
解决WordPress 加载前后台首页页面偏慢、加载webfont.js缓慢的解决方法
安装下列两个插件:针对 谷歌字体webfont.js解决办法:安装替换所有的Google字体、谷歌JS公用库、Gravatar头像为geekzu资源的插件Useso take over Google360谷歌字体镜像库停止服务了 fonts.useso.com解决办法:安装替换Google CDN文件、Gravatar头像链接,加快WordPress打开速度,为WordPress中国...原创 2019-08-26 14:28:04 · 1069 阅读 · 0 评论 -
phpstudy集成环境下nginx模式 wordpress伪静态设置
我使用LNMP一键安装软件的wordpress的nginx伪静态规则(如下所示)复制到vhosts-ini之后保存,重启phpstudy服务 location / { try_files $uri $uri/ /index.php?$args; }# Add trailing slash to */wp-admin requests.rewrite /wp-a...原创 2019-08-27 10:54:00 · 1321 阅读 · 0 评论