Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前在图像上传期间用下划线替换空格。我怎样才能将它也包含在内,以便将 & 更改为“和”。
$newname = str_replace( ' ', '_', trim( strip_tags( $_POST['name'] ) ) ) . _ . $formKey->generateKey() . '_' . time() . '.jpg';
有点坚持这个,甚至不知道该尝试什么..
$newname = str_replace(array(' ', '&'), array('_', 'and'), ... );