PayPal\Common\PayPalUserAgent::_getPHPBit PHP 메소드

_getPHPBit() 개인적인 정적인 메소드

Gets PHP Bit version
private static _getPHPBit ( ) : integer | string
리턴 integer | string
    private static function _getPHPBit()
    {
        switch (PHP_INT_SIZE) {
            case 4:
                return '32';
            case 8:
                return '64';
            default:
                return PHP_INT_SIZE;
        }
    }
PayPalUserAgent