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.
現在、画像のアップロード中にスペースをアンダースコアに置き換えています。& を "and" に変更するにはどうすればそれを含めることができますか。
$newname = str_replace( ' ', '_', trim( strip_tags( $_POST['name'] ) ) ) . _ . $formKey->generateKey() . '_' . time() . '.jpg';
これに固執していて、何を試みるべきかさえわかりません..
$newname = str_replace(array(' ', '&'), array('_', 'and'), ... );