https://github.com/gordonmurray/clean-import-headings
A class to help clean headings on an imported CSV file to make them more understandable to an automated process
https://github.com/gordonmurray/clean-import-headings
csv-import data-cleaning php5-6 php7
Last synced: 6 months ago
JSON representation
A class to help clean headings on an imported CSV file to make them more understandable to an automated process
- Host: GitHub
- URL: https://github.com/gordonmurray/clean-import-headings
- Owner: gordonmurray
- License: mit
- Created: 2017-02-18T20:24:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-30T19:36:53.000Z (about 9 years ago)
- Last Synced: 2025-03-10T16:57:09.006Z (over 1 year ago)
- Topics: csv-import, data-cleaning, php5-6, php7
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clean Import Headings
[](https://travis-ci.org/gordonmurray/clean-import-headings)
A small PHP class to help clean headings on an imported CSV file, to make them more understandable to an automated process
## column headings before:
'Company_Import_ID', 'Company_Title_1', 'Company_First_Name', 'Company_Middle_Name', 'Company_Surname', 'Maiden Name', 'Company_Birth_date', 'DEPTAP_Position', 'DEPTAP_OrgName'
## column headings after:
'import id', 'title', 'first name', 'middle name', 'surname', 'maiden name', 'birth date', 'position', 'orgname'