I have a string with numbers like this:
$string = "694,852,94,94,743,202,127,127";
What is the best and quickest way to get an integer array from this string in PHP?
Array ( [0] => 694,
[1] => 852,
[2] => 94,
[3] => 94,
[4] => 743,
[5] => 202,
[6] => 127,
[7] => 127 )