我试图从字符串中删除不需要的字符,但我无法用斜杠/一弄明白。
$url = "http://www.google.com/";
$array_remove = array(
'/',
' ',
'-',
'.'
);
$string = "This i Will convert to-Picture/sting";
$convert = $url.'images/'.strtolower(str_replace($array_remove, '_',$string).'.gif');
在这种情况下,斜线将保留在那里,结果将是:this_i_will_convert_to_picture/string.gif
但必须是this_i_will_convert_to_picture_string.gif
非常感谢这里的任何帮助或提示。