vote up 1 vote down star

Can someone tell me why when I cast a string of say 00332 I only get back 332? It removes the leading zeros and saves the data in the same format.

Thanks


this->_gate   = (string) $this->_linkID->QuoteSmart($gate);
flag
1  
Are you casting a string to a string? An int to a string? Please elaborate. – Marc W May 15 at 22:32
Yes, a string to a string. I'm new to type casting so... – Jim May 15 at 22:36
Your right! What's even weirder is that I removed all but the variable and STILL get the leading zeros removed.. What gives? – Jim May 15 at 23:08
Hang on... I'm running the var through addslashes(). I'm wondering if this is what is removing the zeros. – Jim May 15 at 23:10
addslashes() shouldn't touch any 0s. It should just put a slash before any char that needs to be escaped like ' etc.. – alex May 15 at 23:11
show 3 more comments

5 Answers

vote up 0 vote down check

I'd say because the leading zeros don't have any importance when cast to an integer.

Maybe you should leave it as a string if you need those leading zeroes, and only cast (int) on any math needed to be performed (though you could just use the string too, PHP will figure it out)

edit

After seeing the example, I'd want to echo the value before you cast to string (so I can confirm something fishy isn't going on with you QuoteSmart method (or the value your sending as a param, $gate)

link|flag
Hey Alex. You heloed me the other day, Thanks for the help! I posted above a sample. – Jim May 15 at 22:36
The val I'm sending is 00432 and after its cast, I only wind up with 432 being saved in the database. :/ So, prior to casting, I can echo 00432 and afterwards only get 432. Let me remove the quotesmart function and see if that fixes it. brb – Jim May 15 at 22:46
Also, Jim, what type is on the field of your DB ? This could be affecting what is saved in the DB too. – alex May 15 at 22:46
It will need to be something like VARCHAR, not an INT variety (which will most probably destroy useless information to an integer, such as leading `0`s) – alex May 15 at 22:47
Well, I like how your thinking Alex but the field is set to char which will accept any type of input. – Jim May 15 at 22:53
show 3 more comments
vote up 0 vote down

What do you cast it to and why? Let's see the code. If you cast to integer, yeah, integers don't have leading zeroes, so they disappear. No surprise.

link|flag
Please have a look above. Thanks for the help – Jim May 15 at 22:35
vote up 2 vote down

Don't cast strings to strings, or any type to the same type for that matter. Typecasting is for changing something from one type to another.

link|flag
@Jim, it really depends, if you're accepting a user input which MUST be a number (example, a $_GET['id']) then it'd be a good idea to cast to an integer with (int)$_GET['id']. It will blow away any leading alpha stuff, and if it can't get to any useful numbers, will become 0. – alex May 15 at 22:42
1  
However, other precautions need to be taken depending on the context... example, vars printed to page should be htmlspecialchars()'d and vars in a database query should be mysql_real_escape_string or the equivalent for your DB. In fact, just use parameterised queries. Check out www.php.net/pdo – alex May 15 at 22:45
Ok, that makes sense.. I think Alex may have a point about the quotesmart function changing the output. I am going to remove it and see what I get. – Jim May 15 at 22:47
Of course, there's a whole lot more security things to be taken into account for, but luckily there is a lot of stuff on the web. Research wisely! – alex May 15 at 22:49
OK, removing quotesmart did nothing. Here is what I have now: $this->_gate = (string) $gate; 0433 returns 433. This field can be a mixture of string or int. – Jim May 15 at 22:49
show 2 more comments
vote up 1 vote down
$ php -r 'var_dump((string)"00123");'
string(5) "00123"

Looks like the cast isn't your problem.

link|flag
Thanks for that. It was what got me looking for the problem elsewhere. :) – Jim May 15 at 23:47
vote up 0 vote down

OK, here is why it was dropping the leading zeros. It was NOT casting nor addslashes. What I did was to quote the variable (which quotesmart should be doing anyhow but didn't for some reason) Once I quoted the variable, I got the value saved correctly. If Im not mistaken, quotesmart will only work on strings and not ints.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.