cosa ne pensi di questo??


$string = "Guitars|650";
list($nome, $prezzo) = split('[|.-]', $string);
echo "Nome: $nome";
echo "Prezzo: $prezzo";