加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gaode-config.php 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
宇润 提交于 2021-03-17 11:10 . 新增支持导出 JSON
<?php
return [
// 设置高德 KEY
'app_key' => '',
// 导出到 CSV
'export_class' => \Yurun\RegionData\GDExportCSVHandler::class,
'csv' => [
'file' => __DIR__ . '/export-' . time() . '.csv', // 保存文件名
'delimiter' => ',', // 字段分界符
'enclosure' => '"', // 字段环绕符
'title' => true, // 包含标题
],
// 导出到 MySQL
// 'export_class' => \Yurun\RegionData\GDExportMySQLHandler::class,
'mysql' => [
'host' => '127.0.0.1',
'port' => 3306,
'username' => 'root',
'password' => 'root',
'dbname' => 'db_tyiot',
],
// 导出到 JSON
// 'export_class' => \Yurun\RegionData\GDExportJsonHandler::class,
'json' => [
'listFileName' => __DIR__ . '/list.json',
'assocFileName' => __DIR__ . '/assoc.json',
'childrenField' => 'children'
],
];
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化