2月 25, 2025 - php开发    多个php版本,指定版本执行命令已关闭评论

多个php版本,指定版本执行命令

多环境下的composer install报错:

默认php8.0版本,但项目需要php7.4去执行,先找到php7.4的安装目录。可以使用一下:

/www/server/php/74/bin/php /usr/bin/composer install

同样,执行artisan 命令,也可以指定版本:

/www/server/php/74/bin/php artisan config:clear
/www/server/php/74/bin/php artisan cache:clear

[……]

Read more

1月 7, 2025 - laravel    laravel admin update footer已关闭评论

laravel admin update footer

1:复制 vendor/encore/laravel-admin/resources/views/partials/footer.blade.php 到项目的 resources/views/admin/partials/footer.blade.php,然后在 app/Admin/bootstrap.php 文件中加入代码:

// 覆盖`admin`命名空间下的视图
app('view')->prependNamespace('admin', resource_path('views/admin'));


参考链接:https://learnku.com/articles/[……]

Read more

12月 18, 2024 - laravel, 开发笔记    Laravel Storage::append写入速度越来越慢已关闭评论

Laravel Storage::append写入速度越来越慢

1:做大文件合并的时候,使用Storage::append 会自动添加换行符

解决: Storage::append($path, $data, null); 第三个参数填null

2:Laravel 使用append,会打开文件然后把内容写入文件中,若循环写入且文件较大,那么写入的速度会越来越慢,可以使用原生File::append来解决此问题
File::append(Storage::disk(‘local’)->path($file_name), $data);

参考链接:

https://stackoverflow.com/questions/54659226[……]

Read more

页面:«1234567...45»