Working with PHP Octals and String conversions

前端 未结 5 741
暖寄归人
暖寄归人 2021-01-13 02:47

I\'m working with a database that has a bunch of serial numbers that are prefixed with leading 0\'s.

So a serial number can look like 00032432 or 56332432.

5条回答
  •  孤街浪徒
    2021-01-13 03:21

    To convert an octal to a string, cast it:

    $str = (string) 00032432;
    

    You can convert between octal and decimal with the functions octdec and decoct

    
    

    http://uk.php.net/manual/en/function.octdec.php

提交回复
热议问题