Tagged Questions
9
votes
3answers
115 views
Why do PHP and JavaScript have problems dealing with octal and hexadecimal numbers?
I have noticed that PHP and JavaScript treat octal and hexadecimal numbers with some difficulty while type juggling and casting:
PHP:
echo 16 == '0x10' ? 'true' : 'false'; //true, as expected
echo 8 ...
2
votes
5answers
72 views
Backslash + number interpreted by PHP as an octal value, how to block this?
I have to reformat a string that can contain the following :
$string = "---8\7----";
The problem is that '\7' is interpreted by PHP as an octal value instead of just '\' and then '7'.
How can I ...
2
votes
5answers
178 views
How does Casting work in PHP?
What doesn't this work:
(int)08 == (int)09==0
But this and this does?
(int)07==7
(int)06==6
2
votes
4answers
278 views
Octal to sign in string from array
I want to convert octal sign like \46 to normal sign like &.
The problem is that the input is created with preg_match_all(), put into an array and then retrieved.
If I'd manually input the \46 ...
1
vote
1answer
65 views
Understanding str_pad() with leading zeros
I'm trying to build a php function and discovered some weird behavior and I can't even formulate a proper question, so if anyone can explain what is going on, I would appreciate it.
I'm working with ...
1
vote
2answers
45 views
Reliable integer typecasting
I'm working on a data validator package for PHP (mostly as an exercise in some of the new additions in 5.3 such as namespaces). I'm planning to have a main validator class which uses plugin classes ...
1
vote
1answer
155 views
PHP: Why the 'abs' function returns a wrong number if it begins with zero?
The code "abs(070000)" returns 28672, but the code "abs(70000)" returns 70000.
Did the zero at the beginning means that the number is interpreted as hex?
Thank you!
1
vote
4answers
151 views
Working with PHP Octals and String conversions
I'm working with a database that has a bunch of serial numbers that are prefixed with leading 0's.
So a serial number can look like 00032432 or 56332432.
Problem is with PHP I don't understand how ...
1
vote
7answers
120 views
strange behaviour on php
Can some one please tell me why I get odd results rurning the following code?
<?php
class Bank
{
var $ID;
var $balance;
var $name;
function bank($name,$id,$balance=0)
{
...
0
votes
1answer
62 views
PHP: fileperms() values and convert these
Here is something i dont understand:
A file has the permission 0644 which if i use php´s fileperms() functions returns 16804 as integer if i make a var_dump(). What/where is the relation between the ...
0
votes
3answers
137 views
int variable with leading zero?
Why is it that following results in 34?
It doesn't seem to have anything to do with octal numbers.
intval(042);