On Tue, 2006-06-06 at 13:05, tedd wrote:
>
> I don't have these issues because I'm not Lithuanian. If a Lithuanian php
> programmer wants "y" to fall between "i" and "k" in a loop, then good
> luck -- for I can't get it to stop when it passes "z" -- which I think
> it should.

This isbecause you're using the wrong tool for the job. Don't blame the
tool, blame the user of the tool. if you want to loop from 'a' to 'z'
then use chr() and ord().

<?php

    for( $i = ord( 'a' ); $i <= ord( 'z' ); $i++ )
    {
        echo "Nuff said!\n";
    }

?>

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

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

Reply via email to