Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to rename some jpegs in a single directory. The code half works in that they are renamed with the correct filenames but for some reason the new filenames are surrounded with double quotes which makes them inaccessible from my web pages.

Any help appreciated!

$i = 10000;

foreach ($imgArray as $v) {

    $html_file_name = basename($v).PHP_EOL;
    $html_file_name =  str_replace(range(0,9),'', $html_file_name);

    $path = pathinfo($v, PATHINFO_DIRNAME);

    $target = ++$i . $html_file_name;

    rename ($v, $path . '/' . $target);

}

OK so here's the var_dump($imgArray):

array(3) { [0]=> string(47) "../img/gallery/this-is-the-first/10002-vddf.jpg" [1]=> string(51) "../img/gallery/this-is-the-first/10001-vfdssddf.jpg" [2]=> string(50) "../img/gallery/this-is-the-first/10003-vddsvsf.jpg" }

Serialized:

a:3:{i:0;s:47:"../img/gallery/this-is-the-first/10002-vddf.jpg";i:1;s:51:"../img/gallery/this-is-the-first/10001-vfdssddf.jpg";i:2;s:50:"../img/gallery/this-is-the-first/10003-vddsvsf.jpg";}
share|improve this question
i gues u could use str.replace('"','\'', $string); – gabrjan Oct 17 '12 at 11:57
Your code does not contain the cause for that phenomenon. – phant0m Oct 17 '12 at 11:57
I thought about that but I was wondering why it is doing the double quotes in the first place, if I new why the maybe I could implement a nicer solution – Pee Lee Oct 17 '12 at 12:00
@PeeLee: The string $html_file_name is likely to contain such quotes. So you either need to remove them or even better, don't put them in there in the first place. Improve your HTML parsing. php.net/strings – hakre Oct 17 '12 at 12:01
What does $imgArray look like .. ?? – Baba Oct 17 '12 at 12:01
show 6 more comments

closed as too localized by hakre, phant0m, Jack, bensiu, Chathuranga Chandrasekara Oct 17 '12 at 13:33

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

You have new line issue in file name

  $html_file_name = basename($v).PHP_EOL;
                                    ^-------- Appending End of Line to File Name

All you need is

$i = 10000;
foreach ($imgArray as $v) {
    rename($v, pathinfo($v, PATHINFO_DIRNAME) . '/' . (++$i . str_replace(range(0,9),'',  basename($v))));
}
share|improve this answer
1  
That was the culprit. Thanks Baba – Pee Lee Oct 17 '12 at 12:23
You are welcome @Pee Lee – Baba Oct 17 '12 at 12:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.