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.
ユーザーが登録プロセスの一環として写真をアップロードするフォームがあります。しかし、私の問題は、同じ名前で画像の名前を保存するユーザーが、プロフィール写真を表示するときにいくつかの問題を引き起こす可能性があるということです。ファイルシステムにアップロードする時点で画像名を一意にするにはどうすればよいですか。
ありがとう。
次のいずれかのスキームを使用することをお勧めします。
これが役立つ場合
$t = uniqid(); $filename='user-'.$t; echo $filename; // user-1335601088 (always a different name)