Northern Flame Posted April 3, 2008 Share Posted April 3, 2008 How can i format numbers like this: 00 01 02 03 04 etc. i looked at the function number_format() but i couldnt figure it out with that function, does anybody know? Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/ Share on other sites More sharing options...
devstudio Posted April 3, 2008 Share Posted April 3, 2008 Assuming this is for output? Check out: http://us3.php.net/sprintf and it's related functions. Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508111 Share on other sites More sharing options...
Northern Flame Posted April 3, 2008 Author Share Posted April 3, 2008 i just tried the code on there and it still displays the number as 1 instead of 01, maybe im doing it wrong, can you post a sample code that will change numbers from the format 1 2 3 4 to 01 02 03 04 Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508115 Share on other sites More sharing options...
darkfreaks Posted April 3, 2008 Share Posted April 3, 2008 try something lke <?php $formatted = sprintf("%01.2f", $money); ?> Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508133 Share on other sites More sharing options...
Northern Flame Posted April 3, 2008 Author Share Posted April 3, 2008 thanks! thats not exactly what i was looking for but your response helped me find what i wanted, this worked for me: <?php $formatted = sprintf("%02.0f", $money); ?> Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508156 Share on other sites More sharing options...
darkfreaks Posted April 3, 2008 Share Posted April 3, 2008 btw topic solved is in the left corner if you would kindly hit it Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508159 Share on other sites More sharing options...
Northern Flame Posted April 3, 2008 Author Share Posted April 3, 2008 oh, i thought they got rid of that button thanks! Link to comment https://forums.phpfreaks.com/topic/99308-solved-number-format-00/#findComment-508186 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.