I want to add trailing slash for all the preg special characters..For example http://www.youtube.com/watch?v=i9c4PJTDljM
should be converted to http\:\/\/www\.youtube\.com\/watch\?v\=i9c4PJTDljM
I tried below code
echo preg_quote($url);
But it does not add trailing slash to backslash.and result is like this
http\://www\.youtube\.com/watch\?v\=i9c4PJTDljM