On 28 Feb 2008, at 11:40, Aschwin Wesselius wrote:
Stut wrote:
On 28 Feb 2008, at 11:30, Aschwin Wesselius wrote:
Shelley wrote:
Hi all,

What do you think is the best way to display string 'abcdef' as 'fedcba'?


$tmp = '';
$str = 'abcdef';

for ($i = strlen($str); $i >= 0; $i--) {

$tmp.= $str[$i];
}

echo $tmp;

Close, but no cigar. $i should be initialised to strlen($str)-1 otherwise you start one character beyond the end of the string.


Ah, well. You're right, but it works none the less.

Just because it works doesn't mean it's right.

-Stut

--
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to