Anyone know how I can split a number into individual digits?
If you want to be funky, you can try
<?php $digits = str_split(12345 . ''); ?>
Greg
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Anyone know how I can split a number into individual digits?
If you want to be funky, you can try
<?php $digits = str_split(12345 . ''); ?>
Greg
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php