Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 5 hours ago
JSON representation

A class to help clean headings on an imported CSV file to make them more understandable to an automated process

Awesome Lists containing this project

README

        

# Clean Import Headings

[![Build Status](https://travis-ci.org/gordonmurray/clean-import-headings.svg?branch=master)](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'