the answer to this could be easy. But I\'m very fresh to programming. So be gentle...
I\'m at work trying to do a quick fix for one of your customers. I want to get
Use the str_split() function:
$array = str_split(1331000000);
Thanks to PHP's automated type coercion the passed int will be converted to a string automatically. But if you want you can also add an explicit cast.