Jump to content
  • 0

file_exist чувствительный к регистру


user
 Share

Question

$file="images/$brand";
$file=str_replace(" ","-",$file);
if(file_exists("$file.jpg"))
print "<a href=$file.jpg><img src=$file-mini.jpg></a>";

Например,есть бренд Energy E3A.В папке с картинками он назван Energy-E3A.jpg.Но иногда $brand может принимать значение ENERGY E3A.Создать ENERGY-E3A.jpg не получится,потому что эксплорер ругается.Что посоветуете делать в этом случае.file_exists второе не видит.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

$file=scandir("images/tire/");
for($i=0;$i<count($file);$i++)
if($file[$i]!="."&&$file[$i]!="..")
{if(strpos($file[$i],"."))
rename("images/tire/$file[$i]","images/tire/".strtolower($file[$i]));
else
{$dir=$file[$i];
$filename=scandir("images/tire/$dir/");
for($x=0;$x<count($filename);$x++)
if($filename[$x]!="."&&$filename[$x]!="..")
if(strpos($filename[$x],".jpg"))
rename("images/tire/$dir/$filename[$x]","images/tire/$dir/".strtolower($filename[$x]));}}

Написал вот такой скрипт,переименовывает все файлы в папке tire.

Link to comment
Share on other sites

  • 0

Скрипт для переименования это круто, на всякий случай сообщая что в Total Commander есть отличный инструмент группового переименования, найте можно здесь Файл > Групповое переименование, по FTP тоже работает. Прибить все к нижнему регистру можно за пару секунд. Поддерживает регулярки, поэтому возмоности просто безграничны.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy