View Full Version : Choose last 2 Didigts in a number
SmEdD
11-03-2004, 03:04 PM
Ok how do I pick only the last 2 digits of a number (i.e. 1534 I wouls want 34 or 639 I would want 39).
Colin F
11-03-2004, 03:30 PM
you can use the php function substr() (http://ch2.php.net/substr)
Just use it like this: $lastdigits = substr("foo", -2);
that would return "oo"
Xenon
11-03-2004, 03:44 PM
that would result in a string variable if you want to use it as a real integer value, you may also use
$lastdigits = $value % 100
of course leading zeros will then be removed as well.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.