取数字的正则方法$a = '|234|';想取出$a=234;[解决办法]echo (int)str_replace('|','',$a);[解决办法]
$a = '|234|';preg_match('/\d+/',$a,$match);print_r($match[0]);