Trim any zeros at the beginning of a string using PHP

后端 未结 6 1896
庸人自扰
庸人自扰 2021-02-13 17:59

Users will be filling a field in with numbers relating to their account. Unfortunately, some users will have zeroes prefixed to the beginning of the number to make up a six dig

6条回答
  •  醉话见心
    2021-02-13 18:27

    $number = "004561";
    $number = intval($number, 10);
    $number = (string)$number; // if you want it to again be a string
    

提交回复
热议问题