<?php

$matches = array(); 
# Executa expressao
$string1 = 'string(10) "CURITIBA" string(11) "SP"'; 
$pattern = '/"(.*?)"/'; 
preg_match_all($pattern, $string1, $matches);
echo $matches[1][0];
echo $matches[1][1];
