wolftotem4/mycsv

The PHP CLI tool helps you to convert the result from MySQL command to CSV format.

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/wolftotem4/mycsv

v0.9.4 2017-12-15 08:54 UTC

This package is auto-updated.

Last update: 2025-10-08 18:40:41 UTC


README

This PHP CLI tool helps you to convert the result from MySQL command to CSV format.

Installation

git clone https://github.com/wolftotem4/mycsv.git
cd mycsv
composer install

Basic Usage

Command Line:

> php mycsv data.txt > data.csv

data.txt

+----------+------------+
| username | phone      |
+----------+------------+
| Bob      | 123-456789 |
| Mary     | 456-789123 |
+----------+------------+

data.csv:

username,phone
Bob,123-456789
Mary,456-789123