well i know that how to replace string using PHP str_replace. I have code for multiple string replace it works fine
$subject = 'afsdfasdfasdfasd #%^#^%#@@';
$string = array('a','b','c','d','e','@','#','%','!');
echo str_replace($string, '', $subject);
i have put many words on text file one by one like
01
02
03
04
05
06
07
08
09
http://
stackoverflow.com
questions
ask
gfx
value
words
that
i want
not
like
to
appear
in
title
and named it 'replace.txt' now my question is how i can load this text file for string replace function replace with empty
file()file_get_content()?