SError::args2str PHP 메소드

args2str() 공개 정적인 메소드

public static args2str ( $args )
    public static function args2str($args)
    {
        self::obj2str($args);
        $tmp = SJson::encode($args);
        $tmp = str_replace("\\/", "/", $tmp);
        return substr($tmp, 1, strlen($tmp) - 2);
    }