Gpf_Rpc_Json::reduce_string PHP Метод

reduce_string() публичный Метод

reduce a string by removing leading and trailing comments and whitespace
public reduce_string ( $str ) : string
$str string string value to strip of comments and whitespace
Результат string string value stripped of comments and whitespace
        function reduce_string($str)
        {
            $str = preg_replace(array('#^\\s*//(.+)$#m', '#^\\s*/\\*(.+)\\*/#Us', '#/\\*(.+)\\*/\\s*$#Us'), '', $str);
            // eliminate extraneous space
            return trim($str);
        }