php-general | 2005051
Date: 05/10/05
- Next message: AC: "[PHP] dio_read timeout?"
- Previous message: Ryan A: "Re: [PHP] Re: A couple questions about templating"
- In reply to: Rory Browne: "Re: [PHP] numbers as strings"
- Next in thread: Jon Aston: "Re: [PHP] numbers as strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Normally it truncates the leading zeros if there are any. I will try your
method when I get a moment. got switched on project.
"Rory Browne" <rory.browne <email protected>> wrote in message
news:fa07888a05050916083001056b <email protected>
For the most part you can simply treat them as strings. What is
happening that shouldn't be happening, or what should be happening,
but isn't?
> let us say
> $a = 1;
> $b = 2;
> $c = 0;
$str_a = (string)$a;
$str_b = "$b"
> I would like to be able to
> $str = $c.$a.$b;
Does that not work? What happens when you do that? Personally I'd use
$str = "$c$a$b";
> to result with
> $str = 012;
>
I tried:
[rory <email protected> ~]$ cat > test.php
<?php
$a = 1; $b = 2; $c = 0;
$str = $c . $a . $b;
echo $str;
?>
[rory <email protected> ~]$ php -q test.php
012
> is there something that I have missed or I guess the question should be
what
> did I miss
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: AC: "[PHP] dio_read timeout?"
- Previous message: Ryan A: "Re: [PHP] Re: A couple questions about templating"
- In reply to: Rory Browne: "Re: [PHP] numbers as strings"
- Next in thread: Jon Aston: "Re: [PHP] numbers as strings"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

