<?php


$a = " A=1 B=2";
$a = str_replace(' ','&',$a);
parse_str($a, $valor);
echo $valor['B'];

