获取php版本前2位的方法
function GetPHPVersion() { $p = phpversion(); if (strpos($p, '-') !== false) { $p = substr($p, 0, strpos($p, '-')); } return $p; }