How to get the first two numbers in an integral?
For example: get 12 of the 123456 in PHP or JavaScript?
How to get the first two numbers in an integral?
For example: get 12 of the 123456 in PHP or JavaScript?
JavaScript:
(123456).toString().substr(0,2);
PHP:
substr(123456, 0, 2);
PHP:
$num = 123456;
echo substr($num, 0, 2);
JavaScript:
alert((123456).toString().substr(0, 2));