Below you will find some samples of code I‘ve written in PHP. This is currently my primary language.



The following is a function that I have written to to build CSV files for data bridges. Given an array of associative arrays, this function will grab the keys of the associative array to create a header row, and follow that with the rows of data. Options can be passed to create either tab or comma delimited cells, enclose cells in double quotes, or to show or not show the header row.


Return to resume.