国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

? PHP ????? ThinkPHP ThinkPHP6? ???? Excel? ???? ???? ??? ??????

ThinkPHP6? ???? Excel? ???? ???? ??? ??????

Jun 12, 2023 am 09:23 AM
thinkphp ?? ???? ????

???? ???? ?? ?? ????? ??? ???? ? ????? ?? ??? ?? ? ???? ????. ?? ?? ?? ??? ?????? Excel? ??? ?? ? ???? ?? ?????. ??? ThinkPHP6? ???? Excel? ???? ???? ??? ?? ??? ??? ?????. ? ????? ThinkPHP6? ???? Excel ???? ? ???? ??? ?????.

1. Excel ????

ThinkPHP6? ?? ??? Excel ???? ?? ???? PHPExcel? ?????. PHPExcel? ???? ???? Excel ??? ??? ? ????.

1. json ??? PHPExcel ??? ?????? ?????:

"require": {
    "phpoffice/phpexcel": "^1.8"
},

PHPExcel ??? ?????? ???? ??? ?????:

composer install

2. Excel ???? ???? ???

Excel ???? ??? ???? ???? ??? ???:

namespace appdmincontroller;

use PhpOfficePhpSpreadsheetSpreadsheet;
use PhpOfficePhpSpreadsheetWriterXlsx as Writer;

class Excel extends Base
{
    public function export()
    {
        // TODO: 導出Excel
    }
}

3. ??? ?? ??

??? ???? ?, ??? ??? ??? ???? ???. ????? ??? ??? ???? ???? ? ??? ????.

(1) ???????? ??? ????

namespace appdmincontroller;

use appdminmodelUser as UserModel;
use PhpOfficePhpSpreadsheetSpreadsheet;
use PhpOfficePhpSpreadsheetWriterXlsx as Writer;

class Excel extends Base
{
    public function export()
    {
        $users = UserModel::select()->toArray();

        $spreadsheet = new Spreadsheet();

        $sheet = $spreadsheet->getActiveSheet();
        $sheet->setCellValue('A1', 'ID');
        $sheet->setCellValue('B1', '姓名');
        $sheet->setCellValue('C1', '性別');
        $sheet->setCellValue('D1', '年齡');

        $row = 2;
        foreach ($users as $user) {
            $sheet->setCellValue('A' . $row, $user['id']);
            $sheet->setCellValue('B' . $row, $user['name']);
            $sheet->setCellValue('C' . $row, $user['gender']);
            $sheet->setCellValue('D' . $row, $user['age']);
            $row++;
        }

        $writer = new Writer($spreadsheet);
        $writer->save('users.xlsx');
    }
}

(2) ?? ??? ???? ??? ????

?? ???? Excel ??? ???? ??? ?? ???? ???? ?? ?? ?? ?? ???????? ?? ?? ??? Excel ?? ???? ????? ???. ?? ? ???? ???? API ??????? ?? ? ?? ??? ?? ?? ? ????.

namespace appdmincontroller;

use GuzzleHttpClient;
use PhpOfficePhpSpreadsheetSpreadsheet;
use PhpOfficePhpSpreadsheetWriterXlsx as Writer;

class Excel extends Base
{
    public function export()
    {
        $client = new Client();

        $response = $client->get('https://api.example.com/orders');

        $orders = json_decode($response->getBody()->getContents(), true);

        $spreadsheet = new Spreadsheet();

        $sheet = $spreadsheet->getActiveSheet();
        $sheet->setCellValue('A1', '訂單編號');
        $sheet->setCellValue('B1', '下單人');
        $sheet->setCellValue('C1', '訂單金額');

        $row = 2;
        foreach ($orders as $order) {
            $sheet->setCellValue('A' . $row, $order['id']);
            $sheet->setCellValue('B' . $row, $order['user']);
            $sheet->setCellValue('C' . $row, $order['amount']);
            $row++;
        }

        $writer = new Writer($spreadsheet);
        $writer->save('orders.xlsx');
    }
}

2. Excel ????

ThinkPHP6? ???? Excel ????? ???? ?? ?? ?????. ?? PHPExcel ??? ?????? ???? ?????.

1 PHPExcel ??? ?????? ?????. Excel ???? ??? ???? PHPExcel First Class ?????? ???? ???.

2. Excel ???? ???? ???

Excel ???? ??? ???? ???? ??? ???:

namespace appdmincontroller;

use PhpOfficePhpSpreadsheetIOFactory;

class Excel extends Base
{
    public function import()
    {
        $file = request()->file('file');

        $info = $file->validate(['ext' => 'xlsx'])->move('uploads');

        if ($info) {
            $filename = 'uploads/' . $info->getSaveName();

            $reader = IOFactory::createReader('Xlsx');
            $spreadsheet = $reader->load($filename);

            $sheet = $spreadsheet->getActiveSheet();
            $highestRow = $sheet->getHighestRow();
            $highestColumn = $sheet->getHighestColumn();

            $data = [];

            for ($row = 2; $row <= $highestRow; $row++) {
                $rowData = [];
                for ($column = 'A'; $column <= $highestColumn; $column++) {
                    $cellValue = $sheet->getCell($column . $row)->getValue();
                    $rowData[] = $cellValue;
                }
                $data[] = $rowData;
            }

            unlink($filename);

            dump($data);
        } else {
            echo $file->getError();
        }
    }
}

3. Excel ?? ???

???? ??? Excel? ???? ? ??? ??? ??? ??? ???? ???. ??.

<form method="post" action="admin/excel/import"
??????enctype="multipart/form-data">
??????<input type="file" name="file">
??????<input type="submit" value="上傳">
</form>

4. ??? ??? ??

Excel? ??? ? PHPExcel?? ???? API? ?? ??? ???? ?? ? ????. ? ????? ?? ??? ???? ???? ????.

$highestRow = $sheet->getHighestRow();
$highestColumn = $sheet->getHighestColumn();

$data = [];

for ($row = 2; $row <= $highestRow; $row++) {
    $rowData = [];
    for ($column = 'A'; $column <= $highestColumn; $column++) {
        $cellValue = $sheet->getCell($column . $row)->getValue();
        $rowData[] = $cellValue;
    }
    $data[] = $rowData;
}

??? ???? $data ??? ?????. ??????? ???? ???? ?? ?? ??? ?? ??? ??? ? ????.

????? ThinkPHP6? ???? Excel? ???? ???? ?? ??? ?????. PHPExcel ??? ?????? ???? Excel ??? ?? ?? ??? ? ????.

? ??? ThinkPHP6? ???? Excel? ???? ???? ??? ??????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1601
29
PHP ????
1502
276
???
WeChat?? Douyin ??? ??? ????? ?? ??? ?????? ??? ??? ???? ???? ???? ??? ?????? WeChat?? Douyin ??? ??? ????? ?? ??? ?????? ??? ??? ???? ???? ???? ??? ?????? Mar 21, 2024 pm 10:01 PM

?? ???? ???? ??? ?? ?? ?? ?? ??? ???? Douyin? ?? ???? ?? ?????. Douyin?? ???? ??? ??? ??? ? ?? ?? ??? ?? ???? ?? ??? ?? ????. ??? ?? ???? ????? ?? ???? ??? ??? ???? ??? ??? ?????. 1. WeChat?? Douyin ??? ??? ????? ?? ??? ?????? ??, Douyin ????? ??? ??? ????? ???? Douyin ??? ???? ?? ??? ????? ???? ???? ???. ???? ???? ?? ??? ? ????. Douyin?? ???? ???? ?? ? ?? ??? ?????? ?? ???? ???? ?? ?? ?? "????? ??" ??? ??? ? ????. ??? ???? ? ???? ???? Douyin? ???? ?????? ??? ? ????. 3. ???? Douyin ???? ?????? ???? ???? ???.

thinkphp ????? ???? ?? thinkphp ????? ???? ?? Apr 09, 2024 pm 05:33 PM

ThinkPHP ????? ????? ??? ?????: Composer? ????, ???? ????? ???? php bin/console? ????, ?? ???? ??? http://localhost:8000? ?????.

thinkphp?? ?? ??? ????. thinkphp?? ?? ??? ????. Apr 09, 2024 pm 06:09 PM

ThinkPHP?? ??? PHP ????? ??? ?? ??? ????. ??? ???? 3.2, 5.0, 5.1, 6.0? ????, ??? ??? ??? ???? ??? ??? ???? ? ?????. ?? ?? ??? ThinkPHP 6.0.16???. ??? ??? ? PHP ??, ?? ?? ?? ? ???? ??? ??????. ??? ??? ??? ???? ?? ?? ??? ???? ?? ????.

thinkphp? ???? ?? thinkphp? ???? ?? Apr 09, 2024 pm 05:39 PM

ThinkPHP Framework? ???? ???? ??: ThinkPHP Framework? ?? ????? ?????? ??? ???. ThinkPHP ?? ????? ???? ?? ???(?? ??)? ????. ?????? ?? ????? ?????. ? ??? ?????. ThinkPHP ??????? ??????. ThinkPHP ?????? URL? ???? ?????.

xmind ??? pdf ??? ???? ?? xmind ??? pdf ??? ???? ?? Mar 20, 2024 am 10:30 AM

xmind? ?? ???? ??? ?? ????????. ???? ??? ??? ???? ?? ?? ?????. xmind ??? ?? ??? ????? ?? ??? ?? ???? ??? ? ??? PDF ?? ???? ?????. PDF ???? ??? ??? ? ?? ???? ?????. 1. ?? ????? PDF ??? ???? ??? ????????. [??]-[????] ????? ?????. 2. ?? ??? ??????? [PDF ??]? ???? [??] ??? ?????. 3. ???? ??????? ?? ??, ??, ??? ? ?? ?? ?? ??? ?????. ??? ??? ? [??] ??? ?????. 4. [??] ??? ????

QQ Music?? ????? ??? Mac?? mp3? ????? ? ??? ??? ???. QQ Music?? ????? ??? Mac?? mp3? ????? ? ??? ??? ???. Jan 05, 2024 pm 07:10 PM

??? ?? ?? ?? ?? ????. ?? ?? ???? ??? ?? ??? ? ???? ????. ??? ?? ? ?? ?? ?????? ??????? ??? QQ Music? ??????? ?? ?? QQ Music? ???? ??? ?? ??? ????? ??? Mac ?????? ??? ? ????. ????? ??? ?? ? ??? QQ Music?? ???? ??? ???? ????? ?? ????. ??? Mac? QQ Music?? ????? ??? ??? ??? ????. ??? ?? MP3 ??? ?????. ??? Mac? QQ Music?? ????? ??? MP3 ???? ???? ??? ?????? Mac? QQ Music?? ????? ??? MP3 ???? ???? ???? ??? ?????? Mac? QQ Music?? ????? ??? MP? ???? ????? ??

laravel? thinkphp ? ?? ?? ? ???? laravel? thinkphp ? ?? ?? ? ???? Apr 09, 2024 pm 03:18 PM

Laravel? ThinkPHP ?????? ?? ??: ThinkPHP? ????? ??? ? ??? ??? ?? Laravel?? ??? ????. Laravel? ? ????? ??? ??????? ?? ThinkPHP? ? ??? ? ????.

thinkphp? ???? ?? thinkphp? ???? ?? Apr 09, 2024 pm 05:42 PM

ThinkPHP ?? ??: PHP, Composer ? MySQL ??? ?????. Composer? ???? ????? ????. ThinkPHP ?????? ???? ?????. ?????? ??? ?????. ?????? ??? ?????. ??????? ???? http://localhost:8000? ?????.

See all articles