laravel5.4 importing information from an Excel table into a database

Source: Internet
Author: User

1. First in the need to import the file, this process can be done with the file upload function in Laravel,

For more information, please refer to Laravel document http://laravelacademy.org/post/6885.htm, no more file uploads here.

2. Assume that the table to be imported into the database is now under storage Test.xls

Public Function Daoru ()
{

$filePath = ' storage/'. Iconv (' UTF-8 ', ' GBK ', ' test '). '. xls ';
$ret = [];
Excel::load ($filePath, function ($reader) {
$data = $reader->all ();
$daily = [];
foreach ($data as $sheet = = $dataItem) {
foreach ($dataItem as $ik = = $item) {
if ($sheet = = 0) {
foreach ($item as $i) {
$daily [$ik] = $i;
}
}
}
}

Here $daily is a two-dimensional array, example: $daily [$h] [$m]

Where $daily[$h] represents a row of a table, where you can write a function,

Use a double loop to add data to the database
});
echo "Success"

}

laravel5.4 importing information from an Excel table into a database

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.