Suppose, I have this array in php
$cities=array( \"Caracas\"=>array( \"air\"=>array( \"4\",\"3-5 Working Days\",\"Saturday\"
You can use json_encode to convert the array to JSON:
echo json_encode($cities); exit;