It is recommended to not include special character in filenames, such as apostrophe(‘), double quote(“), percent(%) etc. Special characters in filenames of the files uploaded to a web server should be avoided for various reasons. It may cause unexpected behaviour,…
Tag: regular expression
Converting a text string into comma separated words
Today, i was looking at some old code of mine to find something when i found this little but useful piece of code which i had written for one of my old projects (and of course when i didn’t had…
Spliting CSV (comma seperated) entry grouped by double quotes
By using fgetcsv function we can have well formatted output for csv data without any pain. If you don’t want to use fgetcsv function for some reason and your CSV comma separated entries may contain comma inside except the delimiters,…