Revision: 44680
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 15, 2011 19:59 by punuhan
Initial Code
function remove_special_char($string) { $ts = array("/\~/", "/\`/", "/\@/", "/\#/", "/\\$/", "/\%/", "/\^/", "/\&/", "/\*/", "/\(/", "/\)/", "/\:/", "/\:/", "/\;/", "/\</", "/\>/", "/\?/", "/\//", "/\,/", "/\{/", "/\}/", "/\[/", "/\]/", "/\|/", "/\+/", "/\=/", "/\!/", "/\'/" ); $string = preg_replace($ts,'', $string); return $string; }
Initial URL
Initial Description
The special characters in the file name caused problem when the exported to iphone application.
Initial Title
Remove special characters from file name
Initial Tags
php
Initial Language
PHP