I have a various text and wanted to create an array with the same, is it possible? follows the variable:
$texto = "forma=3&banco=100&agencia=200&conta=300&cheque=404";
The output I wish would be:
array(
'forma' => '3',
'banco' => '100',
'agencia' => '200',
'conta' => '300',
'cheque' => '404'
);