php cast string to array code example
Example 1: string to array in php
print_r(explode(',',$yourstring));
Example 2: convert std to array php
<?php
$realArray = (array) $stdClass;
?>
print_r(explode(',',$yourstring));
<?php
$realArray = (array) $stdClass;
?>