2016-06-30 14 views
0

ダウンロード中にファイルの名前を変更したい。私のダウンロードリンクが "/img/o%20o%20o.png"であると仮定してくださいファイル名から空白を削除するには?

"o o o.png"にダウンロードしたときにこのファイルの名前を変更するシステムを作りたいと思います。 どうすればいいですか?

+1

'urlencode()'/'urldecode()' – Rizier123

+0

これはPHPと関係がありますか、ブラウザの機能を探していますか? –

答えて

0

このお試しください:これでしょう出力

$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

は、この情報がお役に立てば幸いです。

関連する問題