renno Posted October 19, 2006 Share Posted October 19, 2006 When I upload a telephone number field to an SQL database, for example 01898543251, the leading zero is removed and becomes 1898543251. Is there a numeric type that keeps the leading zero or does it have to be inserted as a type of string?Any help would be much appreciated... Cheers, Quote Link to comment https://forums.phpfreaks.com/topic/24433-leading-zero-being-removed/ Share on other sites More sharing options...
Daniel0 Posted October 19, 2006 Share Posted October 19, 2006 If your number is always 11 digits long then you can do this:[code]<?php$number = 6848;$length = 11;if(strlen($number) < $length){ for($i=0; $i<11-strlen($number); $i++) { $prepend .= "0"; } $number = $prepend.$number;}echo $number;?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/24433-leading-zero-being-removed/#findComment-111169 Share on other sites More sharing options...
zq29 Posted October 19, 2006 Share Posted October 19, 2006 I don't think there is a specific numeric datatype that will preserve leading zeros. Either store it as a string, or as an integer and restore the zeros when displying as in Daniel0s reply. You can also do it with str_pad()[code]<?phpecho str_pad ("1234",11,"0",STR_PAD_LEFT); //Displays 00000001234?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/24433-leading-zero-being-removed/#findComment-111179 Share on other sites More sharing options...
renno Posted October 19, 2006 Author Share Posted October 19, 2006 thanks loads, will give it a go... Quote Link to comment https://forums.phpfreaks.com/topic/24433-leading-zero-being-removed/#findComment-111181 Share on other sites More sharing options...
Daniel0 Posted October 19, 2006 Share Posted October 19, 2006 [quote author=SemiApocalyptic link=topic=112007.msg454288#msg454288 date=1161258777]You can also do it with str_pad()[code]<?phpecho str_pad ("1234",11,"0",STR_PAD_LEFT); //Displays 00000001234?>[/code][/quote]Great, I must remember that trick. Much easier than my method. Quote Link to comment https://forums.phpfreaks.com/topic/24433-leading-zero-being-removed/#findComment-111182 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.