Frank wrote:
> How know a PHP group that is in spanish?.
>
> Thanks beforehand...
> Frank.-
http://www.phpes.com/
Saludos
Ă€ngel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Robert V. Zwink wrote:
> What could be simpler than:
>
> $range = implode(" ", range('A', 'Z'));
> echo $range;
>
> result:
> A B C D . . .
The most short expression I found:
$r=join('',range(@A,@Z));
echo $r;
result: ABCDEFGHIJKLMNOPQRSTUVWXYZ
> Am I missing something here? All this loop,
Nico Vrouwe wrote:
> $i
now $a contains 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
3 matches
Mail list logo