marquine/php-etl
最新稳定版本:v2.3.1
Composer 安装命令:
composer require marquine/php-etl
包简介
Extract, Transform and Load data using PHP.
README 文档
README
Extract, Transform and Load data using PHP.
Installation
In your application's folder, run:
composer require marquine/php-etl
Documentation
Documentation can be found here.
Example
In the example below, we will extract data from a csv file, trim white spaces from the name and email columns and then insert the values into the users table:
use Marquine\Etl\Etl; $etl = new Etl; $etl->extract('csv', '/path/to/users.csv') ->transform('trim', ['columns' => ['name', 'email']]) ->load('insert', 'users') ->run();
License
PHP ETL is licensed under the MIT license.
统计信息
- 总下载量: 136.55k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 182
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-15