Answers for "convert array in php"

PHP
1

convert object to array in php

// It will work Perfectly Fine.
$arr = json_decode(json_encode($obj), true);
Posted by: Guest on August-31-2021
0

string to array in php

print_r(explode(',',$yourstring));
Posted by: Guest on October-12-2020

Browse Popular Code Answers by Language