0
ダウンロード中にファイルの名前を変更したい。私のダウンロードリンクが "/img/o%20o%20o.png"であると仮定してくださいファイル名から空白を削除するには?
"o o o.png"にダウンロードしたときにこのファイルの名前を変更するシステムを作りたいと思います。 どうすればいいですか?
ダウンロード中にファイルの名前を変更したい。私のダウンロードリンクが "/img/o%20o%20o.png"であると仮定してくださいファイル名から空白を削除するには?
"o o o.png"にダウンロードしたときにこのファイルの名前を変更するシステムを作りたいと思います。 どうすればいいですか?
このお試しください:これでしょう出力
$encodedPath = "/img/o%20o%20o.png";
$stringArray = explode('/', $encodedPath);// split the encoded path by the delimiter '/'
$fileName = end($stringArray);// get the last element of the string array which is gonna be the filename
echo urldecode($fileName);// decode the filename
を:
o o o.png
は、この情報がお役に立てば幸いです。
'urlencode()'/'urldecode()' – Rizier123
これはPHPと関係がありますか、ブラウザの機能を探していますか? –