Want to remove all leading zeros in a string in PHP? Use the below PHP program to remove all leading zeros from the number.
1 2 3 4 5 6 7 8 9 10 11 12 | <?php // Store the number string with leading zeros into variable $str = "00009485275"; // First typecast to int and then to string $str = (string)((int)($str)); // Print the result echo $str; ?> |
Program Output
1 | 9485275 |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.