'["value", {"label":"Value","type":"select","source":[["1","Yes"],["0","No"]]}]'
How do I convert this array inside single quotes to a regular arrayin PHP?
use json_decode
$string = '["value", {"label":"Value","type":"select","source":[["1","Yes"],["0","No"]]}]';
$phpArray = json_decode($string, true);
var_dump($phpArray);