所属: "laravel"
4月 11, 2023 - laravel    Laravel使用orm的chunk且有delete时删除不全已关闭评论

Laravel使用orm的chunk且有delete时删除不全

Laravel使用orm的chunk且有delete时会遇到删除不全的问题:

Image::where('property_id', 48)->chunk(2, function ($images) {

    foreach ($images as $image) {

 [......]

Read more

3月 20, 2023 - laravel    Laravel6 export customize data to excel file.已关闭评论

Laravel6 export customize data to excel file.

使用composer包工具:maatwebsite/excel

"maatwebsite/excel": "^3.1

步骤:

1:先定义一个export的Object

<?php

namespace App\Imports;

use Maatwebsite\Excel\[......]

Read more

1月 17, 2023 - laravel, php开发    php调用ChatGPT示例已关闭评论

php调用ChatGPT示例

用Laravel调用示例,官方文档链接:

https://platform.openai.com/docs/api-reference/completions/create

让ChatGPT做首诗:
$open_ai_key = env('OPENAI_API_KEY', 'the[......]

Read more

页面:«12345678910»