From b1b52f0a14018d9fe14365fb0c174dcaf569ca9c Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy Date: Sun, 28 Jul 2002 15:12:47 +0000 Subject: [PATCH] Do not confuse anybody with duplicated content. All these are already covered in reserved.xml and constants.xml files in extension dirs... git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@90207 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/predefined.xml | 16816 ------------------------------------ 1 file changed, 16816 deletions(-) delete mode 100644 appendices/predefined.xml diff --git a/appendices/predefined.xml b/appendices/predefined.xml deleted file mode 100644 index 2b54d6254b..0000000000 --- a/appendices/predefined.xml +++ /dev/null @@ -1,16816 +0,0 @@ - - - - - - - List of Predefined Variable, Constant, and Class Names - - The following is a listing of predefined identifiers in PHP. None - of the identifiers listed here should be used as identifiers in a - your scripts. These lists include keywords and predefined variable, - constant, and class names. These lists are neither exhaustive or - complete. - - - - Predefined Variables - - - Server variables: <varname>$_SERVER</varname> - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_SERVER_VARS. - - - - - $_SERVER is an array containing information - such as headers, paths, and script locations. The entries in this - array are created by the webserver. There is no guarantee that - every webserver will provide any of these; servers may omit some, - or provide others not listed here. That said, a large number of - these variables are accounted for in the CGI 1.1 specification, so you should - be able to expect those. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_SERVER; to access it within functions or methods, as - you do with $HTTP_SERVER_VARS. - - - - $HTTP_SERVER_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_SERVER and $HTTP_SERVER_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - You may or may not find any of the following elements in - $_SERVER. Note that few, if any, of these will be available (or - indeed have any meaning) if running PHP on the command line. - - - - - - 'GATEWAY_INTERFACE' - - - What revision of the CGI specification the server is using; - i.e. 'CGI/1.1'. - - - - - - 'SERVER_NAME' - - - The name of the server host under which the current script is - executing. If the script is running on a virtual host, this - will be the value defined for that virtual host. - - - - - - 'SERVER_SOFTWARE' - - - Server identification string, given in the headers when - responding to requests. - - - - - - 'SERVER_PROTOCOL' - - - Name and revision of the information protocol via which the - page was requested; i.e. 'HTTP/1.0'; - - - - - - 'REQUEST_METHOD' - - - Which request method was used to access the page; i.e. 'GET', - 'HEAD', 'POST', 'PUT'. - - - - - - 'QUERY_STRING' - - - The query string, if any, via which the page was accessed. - - - - - - 'DOCUMENT_ROOT' - - - The document root directory under which the current script is - executing, as defined in the server's configuration file. - - - - - - 'HTTP_ACCEPT' - - - Contents of the Accept: header from the - current request, if there is one. - - - - - - 'HTTP_ACCEPT_CHARSET' - - - Contents of the Accept-Charset: header - from the current request, if there is one. Example: - 'iso-8859-1,*,utf-8'. - - - - - - 'HTTP_ACCEPT_ENCODING' - - - Contents of the Accept-Encoding: header - from the current request, if there is one. Example: 'gzip'. - - - - - - 'HTTP_ACCEPT_LANGUAGE' - - - Contents of the Accept-Language: header - from the current request, if there is one. Example: 'en'. - - - - - - 'HTTP_CONNECTION' - - - Contents of the Connection: header from - the current request, if there is one. Example: 'Keep-Alive'. - - - - - - 'HTTP_HOST' - - - Contents of the Host: header from the - current request, if there is one. - - - - - - 'HTTP_REFERER' - - - The address of the page (if any) which referred the user - agent to the current page. This is set by the user agent. Not - all user agents will set this, and some provide the ability - to modify HTTP_REFERER as a feature. In - short, it cannot really be trusted. - - - - - - 'HTTP_USER_AGENT' - - - Contents of the User_Agent: header from - the current request, if there is one. This is a string - denoting the user agent being which is accessing the page. A - typical example is: Mozilla/4.5 [en] (X11; U; - Linux 2.2.9 i586). Among other things, you - can use this value with get_browser to - tailor your page's output to the capabilities of the user - agent. - - - - - - 'REMOTE_ADDR' - - - The IP address from which the user is viewing the current - page. - - - - - - 'REMOTE_PORT' - - - The port being used on the user's machine to communicate with - the web server. - - - - - - 'SCRIPT_FILENAME' - - - The absolute pathname of the currently executing script. - - - - - - 'SERVER_ADMIN' - - - The value given to the SERVER_ADMIN (for Apache) directive in - the web server configuration file. If the script is running - on a virtual host, this will be the value defined for that - virtual host. - - - - - - 'SERVER_PORT' - - - The port on the server machine being used by the web server - for communication. For default setups, this will be '80'; - using SSL, for instance, will change this to whatever your - defined secure HTTP port is. - - - - - - 'SERVER_SIGNATURE' - - - String containing the server version and virtual host name - which are added to server-generated pages, if enabled. - - - - - - 'PATH_TRANSLATED' - - - Filesystem- (not document root-) based path to the current - script, after the server has done any virtual-to-real - mapping. - - - - - - 'SCRIPT_NAME' - - - Contains the current script's path. This is useful for pages - which need to point to themselves. Please note that in a CGI - environment the variable contains the path to the PHP binary. - - - - - - 'REQUEST_URI' - - - The URI which was given in order to access this page; for - instance, '/index.html'. - - - - - - 'argv' - - - Array of arguments passed to the script. When the script is - run on the command line, this gives C-style access to the - command line parameters. When called via the GET method, this - will contain the query string. - - - - - - 'argc' - - - Contains the number of command line parameters passed to the - script (if run on the command line). - - - - - - 'PHP_SELF' - - - The filename of the currently executing script, relative to - the document root. If PHP is running as a command-line - processor, this variable is not available. - - - - - - 'PHP_AUTH_USER' - - - When running under Apache as module doing HTTP authentication this - variable is set to the username prodived by the user. - - - - - - 'PHP_AUTH_PW' - - - When running under Apache as module doing HTTP authentication this - variable is set to the password prodived by the user. - - - - - - 'PHP_AUTH_TYPE' - - - When running under Apache as module doing HTTP authenticated this - variable is set to the authentication type. - - - - - - - - - - - Environment variables: <varname>$_ENV</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_ENV_VARS. - - - - - These variables are imported into PHP's global namespace from the - environment under which the PHP parser is running. Many are - provided by the shell under which PHP is running and different - systems are likely running different kinds of shells, a - definitive list is impossible. Please see your shell's - documentation for a list of defined environment variables. - - - - Other environment variables include the CGI variables, placed - there regardless of whether PHP is running as a server module or - CGI processor. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_ENV; to access it within functions or methods, as - you do with $HTTP_ENV_VARS. - - - - $HTTP_ENV_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_ENV and $HTTP_ENV_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - HTTP Cookies: <varname>$_COOKIE</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_COOKIE_VARS. - - - - - An associative array of variables passed to the current script - via HTTP cookies. Automatically global in any scope. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_COOKIE; to access it within functions or methods, as - you do with $HTTP_COOKIE_VARS. - - - - $HTTP_COOKIE_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_COOKIE and $HTTP_COOKIE_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - HTTP GET variables: <varname>$_GET</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_GET_VARS. - - - - - An associative array of variables passed to the current script - via the HTTP GET method. Automatically global in any scope. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_GET; to access it within functions or methods, as - you do with $HTTP_GET_VARS. - - - - $HTTP_GET_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_GET and $HTTP_GET_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - HTTP POST variables: <varname>$_POST</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_POST_VARS. - - - - - An associative array of variables passed to the current script - via the HTTP POST method. Automatically global in any scope. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_POST; to access it within functions or methods, as - you do with $HTTP_POST_VARS. - - - - $HTTP_POST_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_POST and $HTTP_POST_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - HTTP File upload variables: <varname>$_FILES</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_POST_FILES. - - - - - An associative array of items uploaded to the current script - via the HTTP POST method. Automatically global in any scope. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_FILES; to access it within functions or methods, as - you do with $HTTP_POST_FILES. - - - - $HTTP_POST_FILES contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_FILES and $HTTP_POST_FILES - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - Request variables: <varname>$_REQUEST</varname> - - - - Introduced in 4.1.0. There is no equivalent array in earlier - versions. - - - - - An associative array consisting of the contents of - $_GET, $_POST, - $_COOKIE, and $_FILES. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_REQUEST; to access it within functions or methods. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_REQUEST array. For related information, see - the security chapter titled Using Register - Globals. These individual globals are not autoglobals. - - - - - Session variables: <varname>$_SESSION</varname> - - - - Introduced in 4.1.0. In earlier versions, use - $HTTP_SESSION_VARS. - - - - - An associative array containing session variables available to - the current script. See the Session - functions documentation for more information on how this - is used. - - - - This is a 'superglobal', or automatic global, variable. This - simply means that it is available in all scopes throughout a - script. You don't need to do a global - $_SESSION; to access it within functions or methods, as - you do with $HTTP_SESSION_VARS. - - - - $HTTP_SESSION_VARS contains the same - information, but is not an autoglobal. - - - - If the register_globals directive - is set, then these variables will also be made available in the - global scope of the script; i.e., separate from the - $_SESSION and $HTTP_SESSION_VARS - arrays. For related information, see the security chapter titled - Using Register - Globals. These individual globals are not autoglobals. - - - - - - - Predefined Classes - - - Standard Defined Classes - - - These classes are defined in the standard set of functions included - in the PHP build. - - - - - Directory - - - The class from which dir is instantiated. - - - - - stdClass - - - - - - - - - - <link linkend="ref.ming">Ming</link> Defined Classes - - - These classes are defined in the - Ming - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - swfshape - - - - - - - swffill - - - - - - - swfgradient - - - - - - - swfbitmap - - - - - - - swftext - - - - - - - swftextfield - - - - - - - swffont - - - - - - - swfdisplayitem - - - - - - - swfmovie - - - - - - - swfbutton - - - - - - - swfaction - - - - - - - swfmorph - - - - - - - swfsprite - - - - - - - - - - <link linkend="ref.oci8">Oracle 8</link> Defined Classes - - - These classes are defined in the Oracle 8 extension, and will only be - available when that extension has either been compiled into PHP - or dynamically loaded at runtime. - - - - - OCI-Lob - - - - - - - OCI-Collection - - - - - - - - - - <link linkend="ref.qtdom">qtdom</link> Defined Classes - - - These classes are defined in the - qtdom - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - QDomDocument - - - - - - - QDomNode - - - - - - - - - - - - - Predefined Constants - - Core Defined Constants - - - These constants are defined by the PHP core. This includes PHP, - the Zend engine, and SAPI modules. - - - - - - PHP_VERSION - (string) - - - - The string representation of the version of the PHP parser - presently in use; for example '4.1.0'. - - - - - - PHP_OS - (string) - - - - The name of the operating system on which the PHP parser is - executing. Possible values include, but are not limited to: - "AIX", "Darwin" (MacOS), "Linux", "SunOS", "WIN32", and - "WINNT". - - - - - - &true; - (boolean) - - - - A &true; value (see the boolean type). - - - - - - - &false; - (boolean) - - - - A &false; value (see the boolean type). - - - - - - E_ERROR - (integer) - - - - Denotes an error other than a parsing error from which - recovery is not possible. - - - - - - E_WARNING - (integer) - - - - Denotes a condition where PHP knows something is wrong, but - will continue anyway; these can be caught by the script - itself. An example would be an invalid regexp in - - - - - - E_NOTICE - (integer) - - - - Something happened which may or may not be an error. Execution - continues. Examples include using an unquoted string as an - array index, or accessing a variable which has not been set. - - - - - - E_PARSE - (integer) - - - - The parser choked on invalid syntax in the script - file. Recovery is not possible. - - - - - - E_CORE_ERROR - (integer) - - - - - - - - - E_CORE_WARNING - (integer) - - - - - - - - - E_COMPILE_ERROR - (integer) - - - - - - - - - E_COMPILE_WARNING - (integer) - - - - - - - - - E_USER_ERROR - (integer) - - - - - - - - - E_USER_WARNING - (integer) - - - - - - - - - E_USER_NOTICE - (integer) - - - - - - - - - E_ALL - (integer) - - - - All of the E_* constants rolled into one. If used with - error_reporting, will cause any and all - problems noticed by PHP to be reported. - - - - - - DEFAULT_INCLUDE_PATH - (string) - - - - - - - - - PEAR_INSTALL_DIR - (string) - - - - - - - - - PEAR_EXTENSION_DIR - (string) - - - - - - - - - PHP_EXTENSION_DIR - (string) - - - - - - - - - PHP_BINDIR - (string) - - - - - - - - - PHP_LIBDIR - (string) - - - - - - - - - PHP_DATADIR - (string) - - - - - - - - - PHP_SYSCONFDIR - (string) - - - - - - - - - PHP_LOCALSTATEDIR - (string) - - - - - - - - - PHP_CONFIG_FILE_PATH - (string) - - - - - - - - - PHP_OUTPUT_HANDLER_START - (integer) - - - - - - - - - PHP_OUTPUT_HANDLER_CONT - (integer) - - - - - - - - - PHP_OUTPUT_HANDLER_END - (integer) - - - - - - - - - - - Standard Defined Constants - - - These constants are defined in the basic PHP build, and except - where noted will always be available. - - - - - - EXTR_OVERWRITE - (integer) - - - - - - - - - EXTR_SKIP - (integer) - - - - - - - - - EXTR_PREFIX_SAME - (integer) - - - - - - - - - EXTR_PREFIX_ALL - (integer) - - - - - - - - - EXTR_PREFIX_INVALID - (integer) - - - - - - - - - EXTR_PREFIX_IF_EXISTS - (integer) - - - - - - - - - EXTR_IF_EXISTS - (integer) - - - - - - - - - SORT_ASC - (integer) - - - - - - - - - SORT_DESC - (integer) - - - - - - - - - SORT_REGULAR - (integer) - - - - - - - - - SORT_NUMERIC - (integer) - - - - - - - - - SORT_STRING - (integer) - - - - - - - - - CASE_LOWER - (integer) - - - - - - - - - CASE_UPPER - (integer) - - - - - - - - - COUNT_NORMAL - (integer) - - - - - - - - - COUNT_RECURSIVE - (integer) - - - - - - - - - ASSERT_ACTIVE - (integer) - - - - - - - - - ASSERT_CALLBACK - (integer) - - - - - - - - - ASSERT_BAIL - (integer) - - - - - - - - - ASSERT_WARNING - (integer) - - - - - - - - - ASSERT_QUIET_EVAL - (integer) - - - - - - - - - CONNECTION_ABORTED - (integer) - - - - - - - - - CONNECTION_NORMAL - (integer) - - - - - - - - - CONNECTION_TIMEOUT - (integer) - - - - - - - - - INI_USER - (integer) - - - - - - - - - INI_PERDIR - (integer) - - - - - - - - - INI_SYSTEM - (integer) - - - - - - - - - INI_ALL - (integer) - - - - - - - - - M_E - (string) - - - - - - - - - M_LOG2E - (string) - - - - - - - - - M_LOG10E - (string) - - - - - - - - - M_LN2 - (string) - - - - - - - - - M_LN10 - (string) - - - - - - - - - M_PI - (string) - - - - - - - - - M_PI_2 - (string) - - - - - - - - - M_PI_4 - (string) - - - - - - - - - M_1_PI - (string) - - - - - - - - - M_2_PI - (string) - - - - - - - - - M_2_SQRTPI - (string) - - - - - - - - - M_SQRT2 - (string) - - - - - - - - - M_SQRT1_2 - (string) - - - - - - - - - CRYPT_SALT_LENGTH - (integer) - - - - - - - - - CRYPT_STD_DES - (integer) - - - - - - - - - CRYPT_EXT_DES - (integer) - - - - - - - - - CRYPT_MD5 - (integer) - - - - - - - - - CRYPT_BLOWFISH - (integer) - - - - - - - - - DIRECTORY_SEPARATOR - (string) - - - - - - - - - SEEK_SET - (integer) - - - - - - - - - SEEK_CUR - (integer) - - - - - - - - - SEEK_END - (integer) - - - - - - - - - LOCK_SH - (integer) - - - - - - - - - LOCK_EX - (integer) - - - - - - - - - LOCK_UN - (integer) - - - - - - - - - LOCK_NB - (integer) - - - - - - - - - HTML_SPECIALCHARS - (integer) - - - - - - - - - HTML_ENTITIES - (integer) - - - - - - - - - ENT_COMPAT - (integer) - - - - - - - - - ENT_QUOTES - (integer) - - - - - - - - - ENT_NOQUOTES - (integer) - - - - - - - - - INFO_GENERAL - (integer) - - - - - - - - - INFO_CREDITS - (integer) - - - - - - - - - INFO_CONFIGURATION - (integer) - - - - - - - - - INFO_MODULES - (integer) - - - - - - - - - INFO_ENVIRONMENT - (integer) - - - - - - - - - INFO_VARIABLES - (integer) - - - - - - - - - INFO_LICENSE - (integer) - - - - - - - - - INFO_ALL - (integer) - - - - - - - - - CREDITS_GROUP - (integer) - - - - - - - - - CREDITS_GENERAL - (integer) - - - - - - - - - CREDITS_SAPI - (integer) - - - - - - - - - CREDITS_MODULES - (integer) - - - - - - - - - CREDITS_DOCS - (integer) - - - - - - - - - CREDITS_FULLPAGE - (integer) - - - - - - - - - CREDITS_QA - (integer) - - - - - - - - - CREDITS_ALL - (integer) - - - - - - - - - STR_PAD_LEFT - (integer) - - - - - - - - - STR_PAD_RIGHT - (integer) - - - - - - - - - STR_PAD_BOTH - (integer) - - - - - - - - - PATHINFO_DIRNAME - (integer) - - - - - - - - - PATHINFO_BASENAME - (integer) - - - - - - - - - PATHINFO_EXTENSION - (integer) - - - - - - - - - CHAR_MAX - (integer) - - - - - - - - - LC_CTYPE - (integer) - - - - - - - - - LC_NUMERIC - (integer) - - - - - - - - - LC_TIME - (integer) - - - - - - - - - LC_COLLATE - (integer) - - - - - - - - - LC_MONETARY - (integer) - - - - - - - - - LC_ALL - (integer) - - - - - - - - - LC_MESSAGES - (integer) - - - - - - - - - ABDAY_1 - (string) - - - - - - - - - ABDAY_2 - (string) - - - - - - - - - ABDAY_3 - (string) - - - - - - - - - ABDAY_4 - (string) - - - - - - - - - ABDAY_5 - (string) - - - - - - - - - ABDAY_6 - (string) - - - - - - - - - ABDAY_7 - (string) - - - - - - - - - DAY_1 - (string) - - - - - - - - - DAY_2 - (string) - - - - - - - - - DAY_3 - (string) - - - - - - - - - DAY_4 - (string) - - - - - - - - - DAY_5 - (string) - - - - - - - - - DAY_6 - (string) - - - - - - - - - DAY_7 - (string) - - - - - - - - - ABMON_1 - (string) - - - - - - - - - ABMON_2 - (string) - - - - - - - - - ABMON_3 - (string) - - - - - - - - - ABMON_4 - (string) - - - - - - - - - ABMON_5 - (string) - - - - - - - - - ABMON_6 - (string) - - - - - - - - - ABMON_7 - (string) - - - - - - - - - ABMON_8 - (string) - - - - - - - - - ABMON_9 - (string) - - - - - - - - - ABMON_10 - (string) - - - - - - - - - ABMON_11 - (string) - - - - - - - - - ABMON_12 - (string) - - - - - - - - - MON_1 - (string) - - - - - - - - - MON_2 - (string) - - - - - - - - - MON_3 - (string) - - - - - - - - - MON_4 - (string) - - - - - - - - - MON_5 - (string) - - - - - - - - - MON_6 - (string) - - - - - - - - - MON_7 - (string) - - - - - - - - - MON_8 - (string) - - - - - - - - - MON_9 - (string) - - - - - - - - - MON_10 - (string) - - - - - - - - - MON_11 - (string) - - - - - - - - - MON_12 - (string) - - - - - - - - - AM_STR - (string) - - - - - - - - - PM_STR - (string) - - - - - - - - - D_T_FMT - (string) - - - - - - - - - D_FMT - (string) - - - - - - - - - T_FMT - (string) - - - - - - - - - T_FMT_AMPM - (string) - - - - - - - - - ERA - (string) - - - - - - - - - ERA_YEAR - (string) - - - - - - - - - ERA_D_T_FMT - (string) - - - - - - - - - ERA_D_FMT - (string) - - - - - - - - - ERA_T_FMT - (string) - - - - - - - - - ALT_DIGITS - (string) - - - - - - - - - INT_CURR_SYMBOL - (string) - - - - - - - - - CURRENCY_SYMBOL - (string) - - - - - - - - - CRNCYSTR - (string) - - - - - - - - - MON_DECIMAL_POINT - (string) - - - - - - - - - MON_THOUSANDS_SEP - (string) - - - - - - - - - MON_GROUPING - (string) - - - - - - - - - POSITIVE_SIGN - (string) - - - - - - - - - NEGATIVE_SIGN - (string) - - - - - - - - - INT_FRAC_DIGITS - (string) - - - - - - - - - FRAC_DIGITS - (string) - - - - - - - - - P_CS_PRECEDES - (string) - - - - - - - - - P_SEP_BY_SPACE - (string) - - - - - - - - - N_CS_PRECEDES - (string) - - - - - - - - - N_SEP_BY_SPACE - (string) - - - - - - - - - P_SIGN_POSN - (string) - - - - - - - - - N_SIGN_POSN - (string) - - - - - - - - - DECIMAL_POINT - (string) - - - - - - - - - RADIXCHAR - (string) - - - - - - - - - THOUSANDS_SEP - (string) - - - - - - - - - THOUSEP - (string) - - - - - - - - - GROUPING - (string) - - - - - - - - - YESEXPR - (string) - - - - - - - - - NOEXPR - (string) - - - - - - - - - YESSTR - (string) - - - - - - - - - NOSTR - (string) - - - - - - - - - CODESET - (string) - - - - - - - - - LOG_EMERG - (integer) - - - - - - - - - LOG_ALERT - (integer) - - - - - - - - - LOG_CRIT - (integer) - - - - - - - - - LOG_ERR - (integer) - - - - - - - - - LOG_WARNING - (integer) - - - - - - - - - LOG_NOTICE - (integer) - - - - - - - - - LOG_INFO - (integer) - - - - - - - - - LOG_DEBUG - (integer) - - - - - - - - - LOG_KERN - (integer) - - - - - - - - - LOG_USER - (integer) - - - - - - - - - LOG_MAIL - (integer) - - - - - - - - - LOG_DAEMON - (integer) - - - - - - - - - LOG_AUTH - (integer) - - - - - - - - - LOG_SYSLOG - (integer) - - - - - - - - - LOG_LPR - (integer) - - - - - - - - - LOG_NEWS - (integer) - - - - - - - - - LOG_UUCP - (integer) - - - - - - - - - LOG_CRON - (integer) - - - - - - - - - LOG_AUTHPRIV - (integer) - - - - - - - - - LOG_LOCAL0 - (integer) - - - - - - - - - LOG_LOCAL1 - (integer) - - - - - - - - - LOG_LOCAL2 - (integer) - - - - - - - - - LOG_LOCAL3 - (integer) - - - - - - - - - LOG_LOCAL4 - (integer) - - - - - - - - - LOG_LOCAL5 - (integer) - - - - - - - - - LOG_LOCAL6 - (integer) - - - - - - - - - LOG_LOCAL7 - (integer) - - - - - - - - - LOG_PID - (integer) - - - - - - - - - LOG_CONS - (integer) - - - - - - - - - LOG_ODELAY - (integer) - - - - - - - - - LOG_NDELAY - (integer) - - - - - - - - - LOG_NOWAIT - (integer) - - - - - - - - - LOG_PERROR - (integer) - - - - - - - - - STR_PAD_LEFT - (integer) - - - - - - - - - STR_PAD_RIGHT - (integer) - - - - - - - - - STR_PAD_BOTH - (integer) - - - - - - - - - PATHINFO_DIRNAME - (integer) - - - - - - - - - PATHINFO_BASENAME - (integer) - - - - - - - - - PATHINFO_EXTENSION - (integer) - - - - - - - - - CHAR_MAX - (integer) - - - - - - - - - LC_CTYPE - (integer) - - - - - - - - - LC_NUMERIC - (integer) - - - - - - - - - LC_TIME - (integer) - - - - - - - - - LC_COLLATE - (integer) - - - - - - - - - LC_MONETARY - (integer) - - - - - - - - - LC_ALL - (integer) - - - - - - - - - LC_MESSAGES - (integer) - - - - - - - - - ABDAY_1 - (string) - - - - - - - - - ABDAY_2 - (string) - - - - - - - - - ABDAY_3 - (string) - - - - - - - - - ABDAY_4 - (string) - - - - - - - - - ABDAY_5 - (string) - - - - - - - - - ABDAY_6 - (string) - - - - - - - - - ABDAY_7 - (string) - - - - - - - - - DAY_1 - (string) - - - - - - - - - DAY_2 - (string) - - - - - - - - - DAY_3 - (string) - - - - - - - - - DAY_4 - (string) - - - - - - - - - DAY_5 - (string) - - - - - - - - - DAY_6 - (string) - - - - - - - - - DAY_7 - (string) - - - - - - - - - ABMON_1 - (string) - - - - - - - - - ABMON_2 - (string) - - - - - - - - - ABMON_3 - (string) - - - - - - - - - ABMON_4 - (string) - - - - - - - - - ABMON_5 - (string) - - - - - - - - - ABMON_6 - (string) - - - - - - - - - ABMON_7 - (string) - - - - - - - - - ABMON_8 - (string) - - - - - - - - - ABMON_9 - (string) - - - - - - - - - ABMON_10 - (string) - - - - - - - - - ABMON_11 - (string) - - - - - - - - - ABMON_12 - (string) - - - - - - - - - MON_1 - (string) - - - - - - - - - MON_2 - (string) - - - - - - - - - MON_3 - (string) - - - - - - - - - MON_4 - (string) - - - - - - - - - MON_5 - (string) - - - - - - - - - MON_6 - (string) - - - - - - - - - MON_7 - (string) - - - - - - - - - MON_8 - (string) - - - - - - - - - MON_9 - (string) - - - - - - - - - MON_10 - (string) - - - - - - - - - MON_11 - (string) - - - - - - - - - MON_12 - (string) - - - - - - - - - AM_STR - (string) - - - - - - - - - PM_STR - (string) - - - - - - - - - D_T_FMT - (string) - - - - - - - - - D_FMT - (string) - - - - - - - - - T_FMT - (string) - - - - - - - - - T_FMT_AMPM - (string) - - - - - - - - - ERA - (string) - - - - - - - - - ERA_YEAR - (string) - - - - - - - - - ERA_D_T_FMT - (string) - - - - - - - - - ERA_D_FMT - (string) - - - - - - - - - ERA_T_FMT - (string) - - - - - - - - - ALT_DIGITS - (string) - - - - - - - - - INT_CURR_SYMBOL - (string) - - - - - - - - - CURRENCY_SYMBOL - (string) - - - - - - - - - CRNCYSTR - (string) - - - - - - - - - MON_DECIMAL_POINT - (string) - - - - - - - - - MON_THOUSANDS_SEP - (string) - - - - - - - - - MON_GROUPING - (string) - - - - - - - - - POSITIVE_SIGN - (string) - - - - - - - - - NEGATIVE_SIGN - (string) - - - - - - - - - INT_FRAC_DIGITS - (string) - - - - - - - - - FRAC_DIGITS - (string) - - - - - - - - - P_CS_PRECEDES - (string) - - - - - - - - - P_SEP_BY_SPACE - (string) - - - - - - - - - N_CS_PRECEDES - (string) - - - - - - - - - N_SEP_BY_SPACE - (string) - - - - - - - - - P_SIGN_POSN - (string) - - - - - - - - - N_SIGN_POSN - (string) - - - - - - - - - DECIMAL_POINT - (string) - - - - - - - - - RADIXCHAR - (string) - - - - - - - - - THOUSANDS_SEP - (string) - - - - - - - - - THOUSEP - (string) - - - - - - - - - GROUPING - (string) - - - - - - - - - YESEXPR - (string) - - - - - - - - - NOEXPR - (string) - - - - - - - - - YESSTR - (string) - - - - - - - - - NOSTR - (string) - - - - - - - - - CODESET - (string) - - - - - - - - - - - <link linkend="ref.calendar">calendar</link> Defined Constants - - - These constants are defined in the - calendar - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - CAL_GREGORIAN - (integer) - - - - - - - - - CAL_JULIAN - (integer) - - - - - - - - - CAL_JEWISH - (integer) - - - - - - - - - CAL_FRENCH - (integer) - - - - - - - - - CAL_NUM_CALS - (integer) - - - - - - - - - CAL_DOW_DAYNO - (integer) - - - - - - - - - CAL_DOW_SHORT - (integer) - - - - - - - - - CAL_DOW_LONG - (integer) - - - - - - - - - CAL_MONTH_GREGORIAN_SHORT - (integer) - - - - - - - - - CAL_MONTH_GREGORIAN_LONG - (integer) - - - - - - - - - CAL_MONTH_JULIAN_SHORT - (integer) - - - - - - - - - CAL_MONTH_JULIAN_LONG - (integer) - - - - - - - - - CAL_MONTH_JEWISH - (integer) - - - - - - - - - CAL_MONTH_FRENCH - (integer) - - - - - - - - - - <link linkend="ref.com">com</link> Defined Constants - - - These constants are defined in the - com - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - CLSCTX_INPROC_SERVER - (integer) - - - - - - - - - CLSCTX_INPROC_HANDLER - (integer) - - - - - - - - - CLSCTX_LOCAL_SERVER - (integer) - - - - - - - - - CLSCTX_REMOTE_SERVER - (integer) - - - - - - - - - CLSCTX_SERVER - (integer) - - - - - - - - - CLSCTX_ALL - (integer) - - - - - - - - - VT_NULL - (integer) - - - - - - - - - VT_EMPTY - (integer) - - - - - - - - - VT_UI1 - (integer) - - - - - - - - - VT_I2 - (integer) - - - - - - - - - VT_I4 - (integer) - - - - - - - - - VT_R4 - (integer) - - - - - - - - - VT_R8 - (integer) - - - - - - - - - VT_BOOL - (integer) - - - - - - - - - VT_ERROR - (integer) - - - - - - - - - VT_CY - (integer) - - - - - - - - - VT_DATE - (integer) - - - - - - - - - VT_BSTR - (integer) - - - - - - - - - VT_DECIMAL - (integer) - - - - - - - - - VT_UNKNOWN - (integer) - - - - - - - - - VT_DISPATCH - (integer) - - - - - - - - - VT_VARIANT - (integer) - - - - - - - - - VT_I1 - (integer) - - - - - - - - - VT_UI2 - (integer) - - - - - - - - - VT_UI4 - (integer) - - - - - - - - - VT_INT - (integer) - - - - - - - - - VT_UINT - (integer) - - - - - - - - - VT_ARRAY - (integer) - - - - - - - - - VT_BYREF - (integer) - - - - - - - - - CP_ACP - (integer) - - - - - - - - - CP_MACCP - (integer) - - - - - - - - - CP_OEMCP - (integer) - - - - - - - - - CP_UTF7 - (integer) - - - - - - - - - CP_UTF8 - (integer) - - - - - - - - - CP_SYMBOL - (integer) - - - - - - - - - CP_THREAD_ACP - (integer) - - - - - - - - - - <link linkend="ref.cpdf">cpdf</link> Defined Constants - - - These constants are defined in the - cpdf - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - CPDF_PM_NONE - (integer) - - - - - - - - - CPDF_PM_OUTLINES - (integer) - - - - - - - - - CPDF_PM_THUMBS - (integer) - - - - - - - - - CPDF_PM_FULLSCREEN - (integer) - - - - - - - - - CPDF_PL_SINGLE - (integer) - - - - - - - - - CPDF_PL_1COLUMN - (integer) - - - - - - - - - CPDF_PL_2LCOLUMN - (integer) - - - - - - - - - CPDF_PL_2RCOLUMN - (integer) - - - - - - - - - - <link linkend="ref.curl">curl</link> Defined Constants - - - These constants are defined in the - curl - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - CURLOPT_PORT - (string) - - - - - - - - - CURLOPT_FILE - (string) - - - - - - - - - CURLOPT_INFILE - (string) - - - - - - - - - CURLOPT_INFILESIZE - (string) - - - - - - - - - CURLOPT_URL - (string) - - - - - - - - - CURLOPT_PROXY - (string) - - - - - - - - - CURLOPT_VERBOSE - (string) - - - - - - - - - CURLOPT_HEADER - (string) - - - - - - - - - CURLOPT_HTTPHEADER - (string) - - - - - - - - - CURLOPT_NOPROGRESS - (string) - - - - - - - - - CURLOPT_NOBODY - (string) - - - - - - - - - CURLOPT_FAILONERROR - (string) - - - - - - - - - CURLOPT_UPLOAD - (string) - - - - - - - - - CURLOPT_POST - (string) - - - - - - - - - CURLOPT_FTPLISTONLY - (string) - - - - - - - - - CURLOPT_FTPAPPEND - (string) - - - - - - - - - CURLOPT_NETRC - (string) - - - - - - - - - CURLOPT_FOLLOWLOCATION - (string) - - - - - - - - - CURLOPT_FTPASCII - (string) - - - - - - - - - CURLOPT_PUT - (string) - - - - - - - - - CURLOPT_MUTE - (string) - - - - - - - - - CURLOPT_USERPWD - (string) - - - - - - - - - CURLOPT_PROXYUSERPWD - (string) - - - - - - - - - CURLOPT_RANGE - (string) - - - - - - - - - CURLOPT_TIMEOUT - (string) - - - - - - - - - CURLOPT_POSTFIELDS - (string) - - - - - - - - - CURLOPT_REFERER - (string) - - - - - - - - - CURLOPT_USERAGENT - (string) - - - - - - - - - CURLOPT_FTPPORT - (string) - - - - - - - - - CURLOPT_LOW_SPEED_LIMIT - (string) - - - - - - - - - CURLOPT_LOW_SPEED_TIME - (string) - - - - - - - - - CURLOPT_RESUME_FROM - (string) - - - - - - - - - CURLOPT_COOKIE - (string) - - - - - - - - - CURLOPT_SSLCERT - (string) - - - - - - - - - CURLOPT_SSLCERTPASSWD - (string) - - - - - - - - - CURLOPT_WRITEHEADER - (string) - - - - - - - - - CURLOPT_SSL_VERIFYHOST - (string) - - - - - - - - - CURLOPT_COOKIEFILE - (string) - - - - - - - - - CURLOPT_SSLVERSION - (string) - - - - - - - - - CURLOPT_TIMECONDITION - (string) - - - - - - - - - CURLOPT_TIMEVALUE - (string) - - - - - - - - - CURLOPT_CUSTOMREQUEST - (string) - - - - - - - - - CURLOPT_STDERR - (string) - - - - - - - - - CURLOPT_TRANSFERTEXT - (string) - - - - - - - - - CURLOPT_RETURNTRANSFER - (string) - - - - - - - - - CURLOPT_QUOTE - (string) - - - - - - - - - CURLOPT_POSTQUOTE - (string) - - - - - - - - - CURLOPT_INTERFACE - (string) - - - - - - - - - CURLOPT_KRB4LEVEL - (string) - - - - - - - - - CURLOPT_HTTPPROXYTUNNEL - (string) - - - - - - - - - CURLOPT_FILETIME - (string) - - - - - - - - - CURLOPT_WRITEFUNCTION - (string) - - - - - - - - - CURLOPT_READFUNCTION - (string) - - - - - - - - - CURLOPT_PASSWDFUNCTION - (string) - - - - - - - - - CURLOPT_HEADERFUNCTION - (string) - - - - - - - - - CURLOPT_MAXREDIRS - (string) - - - - - - - - - CURLOPT_MAXCONNECTS - (string) - - - - - - - - - CURLOPT_CLOSEPOLICY - (string) - - - - - - - - - CURLOPT_FRESH_CONNECT - (string) - - - - - - - - - CURLOPT_FORBID_REUSE - (string) - - - - - - - - - CURLOPT_RANDOM_FILE - (string) - - - - - - - - - CURLOPT_EGDSOCKET - (string) - - - - - - - - - CURLOPT_CONNECTTIMEOUT - (string) - - - - - - - - - CURLOPT_SSL_VERIFYPEER - (string) - - - - - - - - - CURLOPT_CAINFO - (string) - - - - - - - - - CURLOPT_COOKIEJAR - (string) - - - - - - - - - CURLOPT_SSL_CIPHER_LIST - (string) - - - - - - - - - CURLOPT_BINARYTRANSFER - (string) - - - - - - - - - CURLCLOSEPOLICY_LEAST_RECENTLY_USED - (string) - - - - - - - - - CURLCLOSEPOLICY_LEAST_TRAFFIC - (string) - - - - - - - - - CURLCLOSEPOLICY_SLOWEST - (string) - - - - - - - - - CURLCLOSEPOLICY_CALLBACK - (string) - - - - - - - - - CURLCLOSEPOLICY_OLDEST - (string) - - - - - - - - - CURLINFO_EFFECTIVE_URL - (string) - - - - - - - - - CURLINFO_HTTP_CODE - (string) - - - - - - - - - CURLINFO_HEADER_SIZE - (string) - - - - - - - - - CURLINFO_REQUEST_SIZE - (string) - - - - - - - - - CURLINFO_TOTAL_TIME - (string) - - - - - - - - - CURLINFO_NAMELOOKUP_TIME - (string) - - - - - - - - - CURLINFO_CONNECT_TIME - (string) - - - - - - - - - CURLINFO_PRETRANSFER_TIME - (string) - - - - - - - - - CURLINFO_SIZE_UPLOAD - (string) - - - - - - - - - CURLINFO_SIZE_DOWNLOAD - (string) - - - - - - - - - CURLINFO_SPEED_DOWNLOAD - (string) - - - - - - - - - CURLINFO_SPEED_UPLOAD - (string) - - - - - - - - - CURLINFO_FILETIME - (string) - - - - - - - - - CURLINFO_SSL_VERIFYRESULT - (string) - - - - - - - - - CURLINFO_CONTENT_LENGTH_DOWNLOAD - (string) - - - - - - - - - CURLINFO_CONTENT_LENGTH_UPLOAD - (string) - - - - - - - - - CURLE_OK - (string) - - - - - - - - - CURLE_UNSUPPORTED_PROTOCOL - (string) - - - - - - - - - CURLE_FAILED_INIT - (string) - - - - - - - - - CURLE_URL_MALFORMAT - (string) - - - - - - - - - CURLE_URL_MALFORMAT_USER - (string) - - - - - - - - - CURLE_COULDNT_RESOLVE_PROXY - (string) - - - - - - - - - CURLE_COULDNT_RESOLVE_HOST - (string) - - - - - - - - - CURLE_COULDNT_CONNECT - (string) - - - - - - - - - CURLE_FTP_WEIRD_SERVER_REPLY - (string) - - - - - - - - - CURLE_FTP_ACCESS_DENIED - (string) - - - - - - - - - CURLE_FTP_USER_PASSWORD_INCORRECT - (string) - - - - - - - - - CURLE_FTP_WEIRD_PASS_REPLY - (string) - - - - - - - - - CURLE_FTP_WEIRD_USER_REPLY - (string) - - - - - - - - - CURLE_FTP_WEIRD_PASV_REPLY - (string) - - - - - - - - - CURLE_FTP_WEIRD_227_FORMAT - (string) - - - - - - - - - CURLE_FTP_CANT_GET_HOST - (string) - - - - - - - - - CURLE_FTP_CANT_RECONNECT - (string) - - - - - - - - - CURLE_FTP_COULDNT_SET_BINARY - (string) - - - - - - - - - CURLE_PARTIAL_FILE - (string) - - - - - - - - - CURLE_FTP_COULDNT_RETR_FILE - (string) - - - - - - - - - CURLE_FTP_WRITE_ERROR - (string) - - - - - - - - - CURLE_FTP_QUOTE_ERROR - (string) - - - - - - - - - CURLE_HTTP_NOT_FOUND - (string) - - - - - - - - - CURLE_WRITE_ERROR - (string) - - - - - - - - - CURLE_MALFORMAT_USER - (string) - - - - - - - - - CURLE_FTP_COULDNT_STOR_FILE - (string) - - - - - - - - - CURLE_READ_ERROR - (string) - - - - - - - - - CURLE_OUT_OF_MEMORY - (string) - - - - - - - - - CURLE_OPERATION_TIMEOUTED - (string) - - - - - - - - - CURLE_FTP_COULDNT_SET_ASCII - (string) - - - - - - - - - CURLE_FTP_PORT_FAILED - (string) - - - - - - - - - CURLE_FTP_COULDNT_USE_REST - (string) - - - - - - - - - CURLE_FTP_COULDNT_GET_SIZE - (string) - - - - - - - - - CURLE_HTTP_RANGE_ERROR - (string) - - - - - - - - - CURLE_HTTP_POST_ERROR - (string) - - - - - - - - - CURLE_SSL_CONNECT_ERROR - (string) - - - - - - - - - CURLE_FTP_BAD_DOWNLOAD_RESUME - (string) - - - - - - - - - CURLE_FILE_COULDNT_READ_FILE - (string) - - - - - - - - - CURLE_LDAP_CANNOT_BIND - (string) - - - - - - - - - CURLE_LDAP_SEARCH_FAILED - (string) - - - - - - - - - CURLE_LIBRARY_NOT_FOUND - (string) - - - - - - - - - CURLE_FUNCTION_NOT_FOUND - (string) - - - - - - - - - CURLE_ABORTED_BY_CALLBACK - (string) - - - - - - - - - CURLE_BAD_FUNCTION_ARGUMENT - (string) - - - - - - - - - CURLE_BAD_CALLING_ORDER - (string) - - - - - - - - - CURLE_HTTP_PORT_FAILED - (string) - - - - - - - - - CURLE_BAD_PASSWORD_ENTERED - (string) - - - - - - - - - CURLE_TOO_MANY_REDIRECTS - (string) - - - - - - - - - CURLE_UNKNOWN_TELNET_OPTION - (string) - - - - - - - - - CURLE_TELNET_OPTION_SYNTAX - (string) - - - - - - - - - CURLE_OBSOLETE - (string) - - - - - - - - - CURLE_SSL_PEER_CERTIFICATE - (string) - - - - - - - - - - <link linkend="ref.cyrus">cyrus</link> Defined Constants - - - These constants are defined in the - cyrus - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - CYRUS_CONN_NONSYNCLITERAL - (integer) - - - - - - - - - CYRUS_CONN_INITIALRESPONSE - (integer) - - - - - - - - - CYRUS_CALLBACK_NUMBERED - (integer) - - - - - - - - - CYRUS_CALLBACK_NOLITERAL - (integer) - - - - - - - - - - <link linkend="ref.dbplus">dbplus</link> Defined Constants - - - These constants are defined in the - dbplus - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - DBPLUS_ERR_NOERR - (integer) - - - - - - - - - DBPLUS_ERR_DUPLICATE - (integer) - - - - - - - - - DBPLUS_ERR_EOSCAN - (integer) - - - - - - - - - DBPLUS_ERR_EMPTY - (integer) - - - - - - - - - DBPLUS_ERR_CLOSE - (integer) - - - - - - - - - DBPLUS_ERR_WLOCKED - (integer) - - - - - - - - - DBPLUS_ERR_LOCKED - (integer) - - - - - - - - - DBPLUS_ERR_NOLOCK - (integer) - - - - - - - - - DBPLUS_ERR_READ - (integer) - - - - - - - - - DBPLUS_ERR_WRITE - (integer) - - - - - - - - - DBPLUS_ERR_CREATE - (integer) - - - - - - - - - DBPLUS_ERR_LSEEK - (integer) - - - - - - - - - DBPLUS_ERR_LENGTH - (integer) - - - - - - - - - DBPLUS_ERR_OPEN - (integer) - - - - - - - - - DBPLUS_ERR_WOPEN - (integer) - - - - - - - - - DBPLUS_ERR_MAGIC - (integer) - - - - - - - - - DBPLUS_ERR_VERSION - (integer) - - - - - - - - - DBPLUS_ERR_PGSIZE - (integer) - - - - - - - - - DBPLUS_ERR_CRC - (integer) - - - - - - - - - DBPLUS_ERR_PIPE - (integer) - - - - - - - - - DBPLUS_ERR_NIDX - (integer) - - - - - - - - - DBPLUS_ERR_MALLOC - (integer) - - - - - - - - - DBPLUS_ERR_NUSERS - (integer) - - - - - - - - - DBPLUS_ERR_PREEXIT - (integer) - - - - - - - - - DBPLUS_ERR_ONTRAP - (integer) - - - - - - - - - DBPLUS_ERR_PREPROC - (integer) - - - - - - - - - DBPLUS_ERR_DBPARSE - (integer) - - - - - - - - - DBPLUS_ERR_DBRUNERR - (integer) - - - - - - - - - DBPLUS_ERR_DBPREEXIT - (integer) - - - - - - - - - DBPLUS_ERR_WAIT - (integer) - - - - - - - - - DBPLUS_ERR_CORRUPT_TUPLE - (integer) - - - - - - - - - DBPLUS_ERR_WARNING0 - (integer) - - - - - - - - - DBPLUS_ERR_PANIC - (integer) - - - - - - - - - DBPLUS_ERR_FIFO - (integer) - - - - - - - - - DBPLUS_ERR_PERM - (integer) - - - - - - - - - DBPLUS_ERR_TCL - (integer) - - - - - - - - - DBPLUS_ERR_RESTRICTED - (integer) - - - - - - - - - DBPLUS_ERR_USER - (integer) - - - - - - - - - DBPLUS_ERR_UNKNOWN - (integer) - - - - - - - - - - <link linkend="ref.dbx">dbx</link> Defined Constants - - - These constants are defined in the - dbx - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - DBX_MYSQL - (integer) - - - - - - - - - DBX_ODBC - (integer) - - - - - - - - - DBX_PGSQL - (integer) - - - - - - - - - DBX_MSSQL - (integer) - - - - - - - - - DBX_FBSQL - (integer) - - - - - - - - - DBX_OCI8 - (integer) - - - - - - - - - DBX_PERSISTENT - (integer) - - - - - - - - - DBX_RESULT_INFO - (integer) - - - - - - - - - DBX_RESULT_INDEX - (integer) - - - - - - - - - DBX_RESULT_ASSOC - (integer) - - - - - - - - - DBX_CMP_NATIVE - (integer) - - - - - - - - - DBX_CMP_TEXT - (integer) - - - - - - - - - DBX_CMP_NUMBER - (integer) - - - - - - - - - DBX_CMP_ASC - (integer) - - - - - - - - - DBX_CMP_DESC - (integer) - - - - - - - - - - <link linkend="ref.domxml">domxml</link> Defined Constants - - - These constants are defined in the - domxml - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - XML_ELEMENT_NODE - (integer) - - - - - - - - - XML_ATTRIBUTE_NODE - (integer) - - - - - - - - - XML_TEXT_NODE - (integer) - - - - - - - - - XML_CDATA_SECTION_NODE - (integer) - - - - - - - - - XML_ENTITY_REF_NODE - (integer) - - - - - - - - - XML_ENTITY_NODE - (integer) - - - - - - - - - XML_PI_NODE - (integer) - - - - - - - - - XML_COMMENT_NODE - (integer) - - - - - - - - - XML_DOCUMENT_NODE - (integer) - - - - - - - - - XML_DOCUMENT_TYPE_NODE - (integer) - - - - - - - - - XML_DOCUMENT_FRAG_NODE - (integer) - - - - - - - - - XML_NOTATION_NODE - (integer) - - - - - - - - - XML_HTML_DOCUMENT_NODE - (integer) - - - - - - - - - XML_DTD_NODE - (integer) - - - - - - - - - XML_ELEMENT_DECL_NODE - (integer) - - - - - - - - - XML_ATTRIBUTE_DECL_NODE - (integer) - - - - - - - - - XML_ENTITY_DECL_NODE - (integer) - - - - - - - - - XML_NAMESPACE_DECL_NODE - (integer) - - - - - - - - - XML_GLOBAL_NAMESPACE - (integer) - - - - - - - - - XML_LOCAL_NAMESPACE - (integer) - - - - - - - - - XML_ATTRIBUTE_CDATA - (integer) - - - - - - - - - XML_ATTRIBUTE_ID - (integer) - - - - - - - - - XML_ATTRIBUTE_IDREF - (integer) - - - - - - - - - XML_ATTRIBUTE_IDREFS - (integer) - - - - - - - - - XML_ATTRIBUTE_ENTITY - (integer) - - - - - - - - - XML_ATTRIBUTE_NMTOKEN - (integer) - - - - - - - - - XML_ATTRIBUTE_NMTOKENS - (integer) - - - - - - - - - XML_ATTRIBUTE_ENUMERATION - (integer) - - - - - - - - - XML_ATTRIBUTE_NOTATION - (integer) - - - - - - - - - XPATH_UNDEFINED - (integer) - - - - - - - - - XPATH_NODESET - (integer) - - - - - - - - - XPATH_BOOLEAN - (integer) - - - - - - - - - XPATH_NUMBER - (integer) - - - - - - - - - XPATH_STRING - (integer) - - - - - - - - - XPATH_POINT - (integer) - - - - - - - - - XPATH_RANGE - (integer) - - - - - - - - - XPATH_LOCATIONSET - (integer) - - - - - - - - - XPATH_USERS - (integer) - - - - - - - - - - <link linkend="ref.fbsql">fbsql</link> Defined Constants - - - These constants are defined in the - fbsql - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - FBSQL_ASSOC - (integer) - - - - - - - - - FBSQL_NUM - (integer) - - - - - - - - - FBSQL_BOTH - (integer) - - - - - - - - - FBSQL_LOCK_DEFERRED - (integer) - - - - - - - - - FBSQL_LOCK_OPTIMISTIC - (integer) - - - - - - - - - FBSQL_LOCK_PESSIMISTIC - (integer) - - - - - - - - - FBSQL_ISO_READ_UNCOMMITTED - (integer) - - - - - - - - - FBSQL_ISO_READ_COMMITTED - (integer) - - - - - - - - - FBSQL_ISO_REPEATABLE_READ - (integer) - - - - - - - - - FBSQL_ISO_SERIALIZABLE - (integer) - - - - - - - - - FBSQL_ISO_VERSIONED - (integer) - - - - - - - - - FBSQL_UNKNOWN - (integer) - - - - - - - - - FBSQL_STOPPED - (integer) - - - - - - - - - FBSQL_STARTING - (integer) - - - - - - - - - FBSQL_RUNNING - (integer) - - - - - - - - - FBSQL_STOPPING - (integer) - - - - - - - - - FBSQL_NOEXEC - (integer) - - - - - - - - - FBSQL_LOB_DIRECT - (integer) - - - - - - - - - FBSQL_LOB_HANDLE - (integer) - - - - - - - - - - <link linkend="ref.fdf">fdf</link> Defined Constants - - - These constants are defined in the - fdf - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - FDFValue - (integer) - - - - - - - - - FDFStatus - (integer) - - - - - - - - - FDFFile - (integer) - - - - - - - - - FDFID - (integer) - - - - - - - - - FDFFf - (integer) - - - - - - - - - FDFSetFf - (integer) - - - - - - - - - FDFClearFf - (integer) - - - - - - - - - FDFFlags - (integer) - - - - - - - - - FDFSetF - (integer) - - - - - - - - - FDFClrF - (integer) - - - - - - - - - FDFAP - (integer) - - - - - - - - - FDFAS - (integer) - - - - - - - - - FDFAction - (integer) - - - - - - - - - FDFAA - (integer) - - - - - - - - - FDFAPRef - (integer) - - - - - - - - - FDFIF - (integer) - - - - - - - - - FDFEnter - (integer) - - - - - - - - - FDFExit - (integer) - - - - - - - - - FDFDown - (integer) - - - - - - - - - FDFUp - (integer) - - - - - - - - - FDFFormat - (integer) - - - - - - - - - FDFValidate - (integer) - - - - - - - - - FDFKeystroke - (integer) - - - - - - - - - FDFCalculate - (integer) - - - - - - - - - - <link linkend="ref.fribidi">fribidi</link> Defined Constants - - - These constants are defined in the - fribidi - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - FRIBIDI_CHARSET_UTF8 - (integer) - - - - - - - - - FRIBIDI_CHARSET_8859_6 - (integer) - - - - - - - - - FRIBIDI_CHARSET_8859_8 - (integer) - - - - - - - - - FRIBIDI_CHARSET_CP1255 - (integer) - - - - - - - - - FRIBIDI_CHARSET_CP1256 - (integer) - - - - - - - - - FRIBIDI_CHARSET_ISIRI_3342 - (integer) - - - - - - - - - - <link linkend="ref.ftp">ftp</link> Defined Constants - - - These constants are defined in the - ftp - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - FTP_ASCII - (integer) - - - - - - - - - FTP_TEXT - (integer) - - - - - - - - - FTP_BINARY - (integer) - - - - - - - - - FTP_IMAGE - (integer) - - - - - - - - - FTP_TIMEOUT_SEC - (integer) - - - - - - - - - - <link linkend="ref.image">gd</link> Defined Constants - - - These constants are defined in the - gd - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - IMG_GIF - (integer) - - - - - - - - - IMG_JPG - (integer) - - - - - - - - - IMG_JPEG - (integer) - - - - - - - - - IMG_PNG - (integer) - - - - - - - - - IMG_WBMP - (integer) - - - - - - - - - IMG_XPM - (integer) - - - - - - - - - IMG_COLOR_TILED - (integer) - - - - - - - - - IMG_COLOR_STYLED - (integer) - - - - - - - - - IMG_COLOR_BRUSHED - (integer) - - - - - - - - - IMG_COLOR_STYLEDBRUSHED - (integer) - - - - - - - - - IMG_COLOR_TRANSPARENT - (integer) - - - - - - - - - IMG_ARC_ROUNDED - (integer) - - - - - - - - - IMG_ARC_PIE - (integer) - - - - - - - - - IMG_ARC_CHORD - (integer) - - - - - - - - - IMG_ARC_NOFILL - (integer) - - - - - - - - - IMG_ARC_EDGED - (integer) - - - - - - - - - - <link linkend="ref.gmp">gmp</link> Defined Constants - - - These constants are defined in the - gmp - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - GMP_ROUND_ZERO - (integer) - - - - - - - - - GMP_ROUND_PLUSINF - (integer) - - - - - - - - - GMP_ROUND_MINUSINF - (integer) - - - - - - - - - - <link linkend="ref.hyperwave">hyperwave</link> Defined Constants - - - These constants are defined in the - hyperwave - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - HW_ATTR_LANG - (integer) - - - - - - - - - HW_ATTR_NR - (integer) - - - - - - - - - HW_ATTR_NONE - (integer) - - - - - - - - - - <link linkend="ref.imap">imap</link> Defined Constants - - - These constants are defined in the - imap - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - NIL - (integer) - - - - - - - - - OP_DEBUG - (integer) - - - - - - - - - OP_READONLY - (integer) - - - - - - - - - OP_ANONYMOUS - (integer) - - - - - - - - - OP_SHORTCACHE - (integer) - - - - - - - - - OP_SILENT - (integer) - - - - - - - - - OP_PROTOTYPE - (integer) - - - - - - - - - OP_HALFOPEN - (integer) - - - - - - - - - OP_EXPUNGE - (integer) - - - - - - - - - OP_SECURE - (integer) - - - - - - - - - CL_EXPUNGE - (integer) - - - - - - - - - FT_UID - (integer) - - - - - - - - - FT_PEEK - (integer) - - - - - - - - - FT_NOT - (integer) - - - - - - - - - FT_INTERNAL - (integer) - - - - - - - - - FT_PREFETCHTEXT - (integer) - - - - - - - - - ST_UID - (integer) - - - - - - - - - ST_SILENT - (integer) - - - - - - - - - ST_SET - (integer) - - - - - - - - - CP_UID - (integer) - - - - - - - - - CP_MOVE - (integer) - - - - - - - - - SE_UID - (integer) - - - - - - - - - SE_FREE - (integer) - - - - - - - - - SE_NOPREFETCH - (integer) - - - - - - - - - SO_FREE - (integer) - - - - - - - - - SO_NOSERVER - (integer) - - - - - - - - - SA_MESSAGES - (integer) - - - - - - - - - SA_RECENT - (integer) - - - - - - - - - SA_UNSEEN - (integer) - - - - - - - - - SA_UIDNEXT - (integer) - - - - - - - - - SA_UIDVALIDITY - (integer) - - - - - - - - - SA_ALL - (integer) - - - - - - - - - LATT_NOINFERIORS - (integer) - - - - - - - - - LATT_NOSELECT - (integer) - - - - - - - - - LATT_MARKED - (integer) - - - - - - - - - LATT_UNMARKED - (integer) - - - - - - - - - SORTDATE - (integer) - - - - - - - - - SORTARRIVAL - (integer) - - - - - - - - - SORTFROM - (integer) - - - - - - - - - SORTSUBJECT - (integer) - - - - - - - - - SORTTO - (integer) - - - - - - - - - SORTCC - (integer) - - - - - - - - - SORTSIZE - (integer) - - - - - - - - - TYPETEXT - (integer) - - - - - - - - - TYPEMULTIPART - (integer) - - - - - - - - - TYPEMESSAGE - (integer) - - - - - - - - - TYPEAPPLICATION - (integer) - - - - - - - - - TYPEAUDIO - (integer) - - - - - - - - - TYPEIMAGE - (integer) - - - - - - - - - TYPEVIDEO - (integer) - - - - - - - - - TYPEOTHER - (integer) - - - - - - - - - ENC7BIT - (integer) - - - - - - - - - ENC8BIT - (integer) - - - - - - - - - ENCBINARY - (integer) - - - - - - - - - ENCBASE64 - (integer) - - - - - - - - - ENCQUOTEDPRINTABLE - (integer) - - - - - - - - - ENCOTHER - (integer) - - - - - - - - - - <link linkend="ref.ingres_ii">ingres_ii</link> Defined Constants - - - These constants are defined in the - ingres_ii - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - INGRES_ASSOC - (integer) - - - - - - - - - INGRES_NUM - (integer) - - - - - - - - - INGRES_BOTH - (integer) - - - - - - - - - - <link linkend="ref.interbase">interbase</link> Defined Constants - - - These constants are defined in the - interbase - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - IBASE_DEFAULT - (integer) - - - - - - - - - IBASE_TEXT - (integer) - - - - - - - - - IBASE_UNIXTIME - (integer) - - - - - - - - - IBASE_READ - (integer) - - - - - - - - - IBASE_COMMITTED - (integer) - - - - - - - - - IBASE_CONSISTENCY - (integer) - - - - - - - - - IBASE_NOWAIT - (integer) - - - - - - - - - IBASE_TIMESTAMP - (integer) - - - - - - - - - IBASE_DATE - (integer) - - - - - - - - - IBASE_TIME - (integer) - - - - - - - - - - <link linkend="ref.ldap">ldap</link> Defined Constants - - - These constants are defined in the - ldap - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - LDAP_DEREF_NEVER - (integer) - - - - - - - - - LDAP_DEREF_SEARCHING - (integer) - - - - - - - - - LDAP_DEREF_FINDING - (integer) - - - - - - - - - LDAP_DEREF_ALWAYS - (integer) - - - - - - - - - LDAP_OPT_DEREF - (integer) - - - - - - - - - LDAP_OPT_SIZELIMIT - (integer) - - - - - - - - - LDAP_OPT_TIMELIMIT - (integer) - - - - - - - - - LDAP_OPT_PROTOCOL_VERSION - (integer) - - - - - - - - - LDAP_OPT_ERROR_NUMBER - (integer) - - - - - - - - - LDAP_OPT_REFERRALS - (integer) - - - - - - - - - LDAP_OPT_RESTART - (integer) - - - - - - - - - LDAP_OPT_HOST_NAME - (integer) - - - - - - - - - LDAP_OPT_ERROR_STRING - (integer) - - - - - - - - - LDAP_OPT_MATCHED_DN - (integer) - - - - - - - - - LDAP_OPT_SERVER_CONTROLS - (integer) - - - - - - - - - LDAP_OPT_CLIENT_CONTROLS - (integer) - - - - - - - - - LDAP_OPT_DEBUG_LEVEL - (integer) - - - - - - - - - GSLC_SSL_NO_AUTH - (integer) - - - - - - - - - GSLC_SSL_ONEWAY_AUTH - (integer) - - - - - - - - - GSLC_SSL_TWOWAY_AUTH - (integer) - - - - - - - - - - <link linkend="ref.mbstring">mbstring</link> Defined Constants - - - These constants are defined in the - mbstring - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MB_OVERLOAD_MAIL - (integer) - - - - - - - - - MB_OVERLOAD_STRING - (integer) - - - - - - - - - MB_OVERLOAD_REGEX - (integer) - - - - - - - - - - <link linkend="ref.mcal">mcal</link> Defined Constants - - - These constants are defined in the - mcal - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MCAL_SUNDAY - (integer) - - - - - - - - - MCAL_MONDAY - (integer) - - - - - - - - - MCAL_TUESDAY - (integer) - - - - - - - - - MCAL_WEDNESDAY - (integer) - - - - - - - - - MCAL_THURSDAY - (integer) - - - - - - - - - MCAL_FRIDAY - (integer) - - - - - - - - - MCAL_SATURDAY - (integer) - - - - - - - - - MCAL_JANUARY - (integer) - - - - - - - - - MCAL_FEBRUARY - (integer) - - - - - - - - - MCAL_MARCH - (integer) - - - - - - - - - MCAL_APRIL - (integer) - - - - - - - - - MCAL_MAY - (integer) - - - - - - - - - MCAL_JUNE - (integer) - - - - - - - - - MCAL_JULY - (integer) - - - - - - - - - MCAL_AUGUST - (integer) - - - - - - - - - MCAL_SEPTEMBER - (integer) - - - - - - - - - MCAL_OCTOBER - (integer) - - - - - - - - - MCAL_NOVEMBER - (integer) - - - - - - - - - MCAL_RECUR_NONE - (integer) - - - - - - - - - MCAL_RECUR_DAILY - (integer) - - - - - - - - - MCAL_RECUR_WEEKLY - (integer) - - - - - - - - - MCAL_RECUR_MONTHLY_MDAY - (integer) - - - - - - - - - MCAL_RECUR_MONTHLY_WDAY - (integer) - - - - - - - - - MCAL_RECUR_YEARLY - (integer) - - - - - - - - - MCAL_M_SUNDAY - (integer) - - - - - - - - - MCAL_M_MONDAY - (integer) - - - - - - - - - MCAL_M_TUESDAY - (integer) - - - - - - - - - MCAL_M_WEDNESDAY - (integer) - - - - - - - - - MCAL_M_THURSDAY - (integer) - - - - - - - - - MCAL_M_FRIDAY - (integer) - - - - - - - - - MCAL_M_SATURDAY - (integer) - - - - - - - - - MCAL_M_WEEKDAYS - (integer) - - - - - - - - - MCAL_M_WEEKEND - (integer) - - - - - - - - - MCAL_M_ALLDAYS - (integer) - - - - - - - - - - - <link linkend="ref.mcrypt">mcrypt</link> Defined Constants - - - These constants are defined in the - mcrypt - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MCRYPT_ENCRYPT - (integer) - - - - - - - - - - MCRYPT_DECRYPT - (integer) - - - - - - - - - - MCRYPT_DEV_RANDOM - (integer) - - - - - - - - - - MCRYPT_DEV_URANDOM - (integer) - - - - - - - - - - MCRYPT_RAND - (integer) - - - - - - - - - - MCRYPT_3DES - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_3WAY - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_BLOWFISH_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_BLOWFISH_192 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_BLOWFISH_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_BLOWFISH_448 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_CAST_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_CAST_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_DES - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_GOST - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_IDEA - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_LOKI97 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RIJNDAEL_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RIJNDAEL_192 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RIJNDAEL_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC2_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC2_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC2_1024 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC4 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC6_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC6_192 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_RC6_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SAFER_64 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SAFER_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SAFERPLUS - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SERPENT_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SERPENT_192 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_SERPENT_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_TWOFISH_128 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_TWOFISH_192 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_TWOFISH_256 - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_XTEA - (integer) - - - - This constant is available only when using libmcrypt 2.2.X. - - - - - - MCRYPT_3DES - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_ARCFOUR_IV - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_ARCFOUR - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_BLOWFISH - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_BLOWFISH_COMPAT - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_CAST_128 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_CAST_256 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_CRYPT - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_DES - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_ENIGNA - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_GOST - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_LOKI97 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_PANAMA - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_RC2 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_RIJNDAEL_128 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_RIJNDAEL_192 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_RIJNDAEL_256 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_SAFER64 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_SAFER128 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_SAFERPLUS - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_SERPENT - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_THREEWAY - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_TRIPLEDES - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_TWOFISH - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_WAKE - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_XTEA - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_IDEA - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MARS - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_RC6 - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_SKIPJACK - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_CBC - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_CFB - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_ECB - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_NOFB - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_OFB - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - MCRYPT_MODE_STREAM - (integer) - - - - This constant is available only when using libmcrypt 2.4.X. - - - - - - - - <link linkend="ref.mnogo">mnogosearch</link> Defined Constants - - - These constants are defined in the - mnogosearch - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - UDM_FIELD_URLID - (integer) - - - - - - - - - UDM_FIELD_URL - (integer) - - - - - - - - - UDM_FIELD_CONTENT - (integer) - - - - - - - - - UDM_FIELD_TITLE - (integer) - - - - - - - - - UDM_FIELD_KEYWORDS - (integer) - - - - - - - - - UDM_FIELD_DESC - (integer) - - - - - - - - - UDM_FIELD_DESCRIPTION - (integer) - - - - - - - - - UDM_FIELD_TEXT - (integer) - - - - - - - - - UDM_FIELD_SIZE - (integer) - - - - - - - - - UDM_FIELD_RATING - (integer) - - - - - - - - - UDM_FIELD_SCORE - (integer) - - - - - - - - - UDM_FIELD_MODIFIED - (integer) - - - - - - - - - UDM_FIELD_ORDER - (integer) - - - - - - - - - UDM_FIELD_CRC - (integer) - - - - - - - - - UDM_FIELD_CATEGORY - (integer) - - - - - - - - - UDM_FIELD_LANG - (integer) - - - - - - - - - UDM_FIELD_CHARSET - (integer) - - - - - - - - - UDM_PARAM_PAGE_SIZE - (integer) - - - - - - - - - UDM_PARAM_PAGE_NUM - (integer) - - - - - - - - - UDM_PARAM_SEARCH_MODE - (integer) - - - - - - - - - UDM_PARAM_CACHE_MODE - (integer) - - - - - - - - - UDM_PARAM_TRACK_MODE - (integer) - - - - - - - - - UDM_PARAM_PHRASE_MODE - (integer) - - - - - - - - - UDM_PARAM_CHARSET - (integer) - - - - - - - - - UDM_PARAM_LOCAL_CHARSET - (integer) - - - - - - - - - UDM_PARAM_BROWSER_CHARSET - (integer) - - - - - - - - - UDM_PARAM_STOPTABLE - (integer) - - - - - - - - - UDM_PARAM_STOP_TABLE - (integer) - - - - - - - - - UDM_PARAM_STOPFILE - (integer) - - - - - - - - - UDM_PARAM_STOP_FILE - (integer) - - - - - - - - - UDM_PARAM_WEIGHT_FACTOR - (integer) - - - - - - - - - UDM_PARAM_WORD_MATCH - (integer) - - - - - - - - - UDM_PARAM_MAX_WORD_LEN - (integer) - - - - - - - - - UDM_PARAM_MAX_WORDLEN - (integer) - - - - - - - - - UDM_PARAM_MIN_WORD_LEN - (integer) - - - - - - - - - UDM_PARAM_MIN_WORDLEN - (integer) - - - - - - - - - UDM_PARAM_ISPELL_PREFIXES - (integer) - - - - - - - - - UDM_PARAM_ISPELL_PREFIX - (integer) - - - - - - - - - UDM_PARAM_PREFIXES - (integer) - - - - - - - - - UDM_PARAM_PREFIX - (integer) - - - - - - - - - UDM_PARAM_CROSS_WORDS - (integer) - - - - - - - - - UDM_PARAM_CROSSWORDS - (integer) - - - - - - - - - UDM_PARAM_VARDIR - (integer) - - - - - - - - - UDM_PARAM_DATADIR - (integer) - - - - - - - - - UDM_PARAM_HLBEG - (integer) - - - - - - - - - UDM_PARAM_HLEND - (integer) - - - - - - - - - UDM_PARAM_SYNONYM - (integer) - - - - - - - - - UDM_PARAM_SEARCHD - (integer) - - - - - - - - - UDM_PARAM_QSTRING - (integer) - - - - - - - - - UDM_PARAM_REMOTE_ADDR - (integer) - - - - - - - - - UDM_LIMIT_CAT - (integer) - - - - - - - - - UDM_LIMIT_URL - (integer) - - - - - - - - - UDM_LIMIT_TAG - (integer) - - - - - - - - - UDM_LIMIT_LANG - (integer) - - - - - - - - - UDM_LIMIT_DATE - (integer) - - - - - - - - - UDM_PARAM_FOUND - (integer) - - - - - - - - - UDM_PARAM_NUM_ROWS - (integer) - - - - - - - - - UDM_PARAM_WORDINFO - (integer) - - - - - - - - - UDM_PARAM_WORD_INFO - (integer) - - - - - - - - - UDM_PARAM_SEARCHTIME - (integer) - - - - - - - - - UDM_PARAM_SEARCH_TIME - (integer) - - - - - - - - - UDM_PARAM_FIRST_DOC - (integer) - - - - - - - - - UDM_PARAM_LAST_DOC - (integer) - - - - - - - - - UDM_MODE_ALL - (integer) - - - - - - - - - UDM_MODE_ANY - (integer) - - - - - - - - - UDM_MODE_BOOL - (integer) - - - - - - - - - UDM_MODE_PHRASE - (integer) - - - - - - - - - UDM_CACHE_ENABLED - (integer) - - - - - - - - - UDM_CACHE_DISABLED - (integer) - - - - - - - - - UDM_TRACK_ENABLED - (integer) - - - - - - - - - UDM_TRACK_DISABLED - (integer) - - - - - - - - - UDM_PHRASE_ENABLED - (integer) - - - - - - - - - UDM_PHRASE_DISABLED - (integer) - - - - - - - - - UDM_CROSS_WORDS_ENABLED - (integer) - - - - - - - - - UDM_CROSSWORDS_ENABLED - (integer) - - - - - - - - - UDM_CROSS_WORDS_DISABLED - (integer) - - - - - - - - - UDM_CROSSWORDS_DISABLED - (integer) - - - - - - - - - UDM_PREFIXES_ENABLED - (integer) - - - - - - - - - UDM_PREFIX_ENABLED - (integer) - - - - - - - - - UDM_ISPELL_PREFIXES_ENABLED - (integer) - - - - - - - - - UDM_ISPELL_PREFIX_ENABLED - (integer) - - - - - - - - - UDM_PREFIXES_DISABLED - (integer) - - - - - - - - - UDM_PREFIX_DISABLED - (integer) - - - - - - - - - UDM_ISPELL_PREFIXES_DISABLED - (integer) - - - - - - - - - UDM_ISPELL_PREFIX_DISABLED - (integer) - - - - - - - - - UDM_ISPELL_TYPE_AFFIX - (integer) - - - - - - - - - UDM_ISPELL_TYPE_SPELL - (integer) - - - - - - - - - UDM_ISPELL_TYPE_DB - (integer) - - - - - - - - - UDM_ISPELL_TYPE_SERVER - (integer) - - - - - - - - - UDM_MATCH_WORD - (integer) - - - - - - - - - UDM_MATCH_BEGIN - (integer) - - - - - - - - - UDM_MATCH_SUBSTR - (integer) - - - - - - - - - UDM_MATCH_END - (integer) - - - - - - - - - - <link linkend="ref.msql">msql</link> Defined Constants - - - These constants are defined in the - msql - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MSQL_ASSOC - (integer) - - - - - - - - - MSQL_NUM - (integer) - - - - - - - - - MSQL_BOTH - (integer) - - - - - - - - - - <link linkend="ref.mssql">mssql</link> Defined Constants - - - These constants are defined in the - mssql - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MSSQL_ASSOC - (integer) - - - - - - - - - MSSQL_NUM - (integer) - - - - - - - - - MSSQL_BOTH - (integer) - - - - - - - - - SQLTEXT - (integer) - - - - - - - - - SQLVARCHAR - (integer) - - - - - - - - - SQLCHAR - (integer) - - - - - - - - - SQLINT1 - (integer) - - - - - - - - - SQLINT2 - (integer) - - - - - - - - - SQLINT4 - (integer) - - - - - - - - - SQLBIT - (integer) - - - - - - - - - SQLFLT8 - (integer) - - - - - - - - - - <link linkend="ref.mysql">mysql</link> Defined Constants - - - These constants are defined in the - mysql - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MYSQL_ASSOC - (integer) - - - - - - - - - MYSQL_NUM - (integer) - - - - - - - - - MYSQL_BOTH - (integer) - - - - - - - - - MYSQL_USE_RESULT - (integer) - - - - - - - - - MYSQL_STORE_RESULT - (integer) - - - - - - - - - - - <link linkend="ref.ncurses">ncurses</link> Defined Constants - - - These constants are defined in the - ncurses - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - NCURSES_COLOR_BLACK - (integer) - - - - - - - - - - NCURSES_COLOR_RED - (integer) - - - - - - - - - - NCURSES_COLOR_GREEN - (integer) - - - - - - - - - - NCURSES_COLOR_YELLOW - (integer) - - - - - - - - - - NCURSES_COLOR_BLUE - (integer) - - - - - - - - - - NCURSES_COLOR_MAGENTA - (integer) - - - - - - - - - - NCURSES_COLOR_CYAN - (integer) - - - - - - - - - - NCURSES_COLOR_WHITE - (integer) - - - - - - - - - - NCURSES_KEY_DOWN - (integer) - - - - - - - - - - NCURSES_KEY_UP - (integer) - - - - - - - - - - NCURSES_KEY_LEFT - (integer) - - - - - - - - - - NCURSES_KEY_RIGHT - (integer) - - - - - - - - - - NCURSES_KEY_BACKSPACE - (integer) - - - - - - - - - - NCURSES_KEY_MOUSE - (integer) - - - - - - - - - - NCURSES_KEY_F0 - (integer) - - - - - - - - - - NCURSES_KEY_DL - (integer) - - - - - - - - - - NCURSES_KEY_IL - (integer) - - - - - - - - - - NCURSES_KEY_DC - (integer) - - - - - - - - - - NCURSES_KEY_IC - (integer) - - - - - - - - - - NCURSES_KEY_EIC - (integer) - - - - - - - - - - NCURSES_KEY_CLEAR - (integer) - - - - - - - - - - NCURSES_KEY_EOS - (integer) - - - - - - - - - - NCURSES_KEY_EOL - (integer) - - - - - - - - - - NCURSES_KEY_SF - (integer) - - - - - - - - - - NCURSES_KEY_SR - (integer) - - - - - - - - - - NCURSES_KEY_NPAGE - (integer) - - - - - - - - - - NCURSES_KEY_PPAGE - (integer) - - - - - - - - - - NCURSES_KEY_STAB - (integer) - - - - - - - - - - NCURSES_KEY_CTAB - (integer) - - - - - - - - - - NCURSES_KEY_CATAB - (integer) - - - - - - - - - - NCURSES_KEY_ENTER - (integer) - - - - - - - - - - NCURSES_KEY_SRESET - (integer) - - - - - - - - - - NCURSES_KEY_RESET - (integer) - - - - - - - - - - NCURSES_KEY_PRINT - (integer) - - - - - - - - - - NCURSES_KEY_LL - (integer) - - - - - - - - - - NCURSES_KEY_A1 - (integer) - - - - - - - - - - NCURSES_KEY_A3 - (integer) - - - - - - - - - - NCURSES_KEY_B2 - (integer) - - - - - - - - - - NCURSES_KEY_C1 - (integer) - - - - - - - - - - NCURSES_KEY_C3 - (integer) - - - - - - - - - - NCURSES_KEY_BTAB - (integer) - - - - - - - - - - NCURSES_KEY_BEG - (integer) - - - - - - - - - - NCURSES_KEY_CANCEL - (integer) - - - - - - - - - - NCURSES_KEY_CLOSE - (integer) - - - - - - - - - - NCURSES_KEY_COMMAND - (integer) - - - - - - - - - - NCURSES_KEY_COPY - (integer) - - - - - - - - - - NCURSES_KEY_CREATE - (integer) - - - - - - - - - - NCURSES_KEY_END - (integer) - - - - - - - - - - NCURSES_KEY_EXIT - (integer) - - - - - - - - - - NCURSES_KEY_FIND - (integer) - - - - - - - - - - NCURSES_KEY_HELP - (integer) - - - - - - - - - - NCURSES_KEY_MARK - (integer) - - - - - - - - - - NCURSES_KEY_MESSAGE - (integer) - - - - - - - - - - NCURSES_KEY_MOVE - (integer) - - - - - - - - - - NCURSES_KEY_NEXT - (integer) - - - - - - - - - - NCURSES_KEY_OPEN - (integer) - - - - - - - - - - NCURSES_KEY_OPTIONS - (integer) - - - - - - - - - - NCURSES_KEY_PREVIOUS - (integer) - - - - - - - - - - NCURSES_KEY_REDO - (integer) - - - - - - - - - - NCURSES_KEY_REFERENCE - (integer) - - - - - - - - - - NCURSES_KEY_REFRESH - (integer) - - - - - - - - - - NCURSES_KEY_REPLACE - (integer) - - - - - - - - - - NCURSES_KEY_RESTART - (integer) - - - - - - - - - - NCURSES_KEY_RESUME - (integer) - - - - - - - - - - NCURSES_KEY_SAVE - (integer) - - - - - - - - - - NCURSES_KEY_SBEG - (integer) - - - - - - - - - - NCURSES_KEY_SCANCEL - (integer) - - - - - - - - - - NCURSES_KEY_SCOMMAND - (integer) - - - - - - - - - - NCURSES_KEY_SCOPY - (integer) - - - - - - - - - - NCURSES_KEY_SCREATE - (integer) - - - - - - - - - - NCURSES_KEY_SDC - (integer) - - - - - - - - - - NCURSES_KEY_SDL - (integer) - - - - - - - - - - NCURSES_KEY_SELECT - (integer) - - - - - - - - - - NCURSES_KEY_SEND - (integer) - - - - - - - - - - NCURSES_KEY_SEOL - (integer) - - - - - - - - - - NCURSES_KEY_SEXIT - (integer) - - - - - - - - - - NCURSES_KEY_SFIND - (integer) - - - - - - - - - - NCURSES_KEY_SHELP - (integer) - - - - - - - - - - NCURSES_KEY_SHOME - (integer) - - - - - - - - - - NCURSES_KEY_SIC - (integer) - - - - - - - - - - NCURSES_KEY_SLEFT - (integer) - - - - - - - - - - NCURSES_KEY_SMESSAGE - (integer) - - - - - - - - - - NCURSES_KEY_SMOVE - (integer) - - - - - - - - - - NCURSES_KEY_SNEXT - (integer) - - - - - - - - - - NCURSES_KEY_SOPTIONS - (integer) - - - - - - - - - - NCURSES_KEY_SPREVIOUS - (integer) - - - - - - - - - - NCURSES_KEY_SPRINT - (integer) - - - - - - - - - - NCURSES_KEY_SREDO - (integer) - - - - - - - - - - NCURSES_KEY_SREPLACE - (integer) - - - - - - - - - - NCURSES_KEY_SRIGHT - (integer) - - - - - - - - - - NCURSES_KEY_SRSUME - (integer) - - - - - - - - - - NCURSES_KEY_SSAVE - (integer) - - - - - - - - - - NCURSES_KEY_SSUSPEND - (integer) - - - - - - - - - - NCURSES_KEY_SUNDO - (integer) - - - - - - - - - - NCURSES_KEY_SUSPEND - (integer) - - - - - - - - - - NCURSES_KEY_UNDO - (integer) - - - - - - - - - - NCURSES_KEY_RESIZE - (integer) - - - - - - - - - - NCURSES_A_NORMAL - (integer) - - - - - - - - - - NCURSES_A_STANDOUT - (integer) - - - - - - - - - - NCURSES_A_UNDERLINE - (integer) - - - - - - - - - - NCURSES_A_REVERSE - (integer) - - - - - - - - - - NCURSES_A_BLINK - (integer) - - - - - - - - - - NCURSES_A_DIM - (integer) - - - - - - - - - - NCURSES_A_BOLD - (integer) - - - - - - - - - - NCURSES_A_PROTECT - (integer) - - - - - - - - - - NCURSES_A_INVIS - (integer) - - - - - - - - - - NCURSES_A_ALTCHARSET - (integer) - - - - - - - - - - NCURSES_A_CHARTEXT - (integer) - - - - - - - - - - NCURSES_BUTTON1_PRESSED - (integer) - - - - - - - - - - NCURSES_BUTTON1_RELEASED - (integer) - - - - - - - - - - NCURSES_BUTTON1_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON1_DOUBLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON1_TRIPLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON2_PRESSED - (integer) - - - - - - - - - - NCURSES_BUTTON2_RELEASED - (integer) - - - - - - - - - - NCURSES_BUTTON2_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON2_DOUBLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON2_TRIPLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON3_PRESSED - (integer) - - - - - - - - - - NCURSES_BUTTON3_RELEASED - (integer) - - - - - - - - - - NCURSES_BUTTON3_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON3_DOUBLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON3_TRIPLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON4_PRESSED - (integer) - - - - - - - - - - NCURSES_BUTTON4_RELEASED - (integer) - - - - - - - - - - NCURSES_BUTTON4_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON4_DOUBLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON4_TRIPLE_CLICKED - (integer) - - - - - - - - - - NCURSES_BUTTON_SHIFT - (integer) - - - - - - - - - - NCURSES_BUTTON_CTRL - (integer) - - - - - - - - - - NCURSES_BUTTON_ALT - (integer) - - - - - - - - - - NCURSES_ALL_MOUSE_EVENTS - (integer) - - - - - - - - - - NCURSES_REPORT_MOUSE_POSITION - (integer) - - - - - - - - - - - - <link linkend="ref.oci8">oci8</link> Defined Constants - - - These constants are defined in the - oci8 - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - OCI_DEFAULT - (integer) - - - - - - - - - OCI_DESCRIBE_ONLY - (integer) - - - - - - - - - OCI_COMMIT_ON_SUCCESS - (integer) - - - - - - - - - OCI_EXACT_FETCH - (integer) - - - - - - - - - SQLT_BFILEE - (integer) - - - - - - - - - SQLT_CFILEE - (integer) - - - - - - - - - SQLT_CLOB - (integer) - - - - - - - - - SQLT_BLOB - (integer) - - - - - - - - - SQLT_RDD - (integer) - - - - - - - - - OCI_B_SQLT_NTY - (integer) - - - - - - - - - OCI_SYSDATE - (string) - - - - - - - - - OCI_B_BFILE - (integer) - - - - - - - - - OCI_B_CFILEE - (integer) - - - - - - - - - OCI_B_CLOB - (integer) - - - - - - - - - OCI_B_BLOB - (integer) - - - - - - - - - OCI_B_ROWID - (integer) - - - - - - - - - OCI_B_CURSOR - (integer) - - - - - - - - - OCI_B_BIN - (integer) - - - - - - - - - OCI_FETCHSTATEMENT_BY_COLUMN - (integer) - - - - - - - - - OCI_FETCHSTATEMENT_BY_ROW - (integer) - - - - - - - - - OCI_ASSOC - (integer) - - - - - - - - - OCI_NUM - (integer) - - - - - - - - - OCI_BOTH - (integer) - - - - - - - - - OCI_RETURN_NULLS - (integer) - - - - - - - - - OCI_RETURN_LOBS - (integer) - - - - - - - - - OCI_DTYPE_FILE - (integer) - - - - - - - - - OCI_DTYPE_LOB - (integer) - - - - - - - - - OCI_DTYPE_ROWID - (integer) - - - - - - - - - OCI_D_FILE - (integer) - - - - - - - - - OCI_D_LOB - (integer) - - - - - - - - - OCI_D_ROWID - (integer) - - - - - - - - - - <link linkend="ref.odbc">odbc</link> Defined Constants - - - These constants are defined in the - odbc - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - ODBC_TYPE - (string) - - - - - - - - - ODBC_BINMODE_PASSTHRU - (integer) - - - - - - - - - ODBC_BINMODE_RETURN - (integer) - - - - - - - - - ODBC_BINMODE_CONVERT - (integer) - - - - - - - - - SQL_ODBC_CURSORS - (integer) - - - - - - - - - SQL_CUR_USE_DRIVER - (integer) - - - - - - - - - SQL_CUR_USE_IF_NEEDED - (integer) - - - - - - - - - SQL_CUR_USE_ODBC - (integer) - - - - - - - - - SQL_CONCURRENCY - (integer) - - - - - - - - - SQL_CONCUR_READ_ONLY - (integer) - - - - - - - - - SQL_CONCUR_LOCK - (integer) - - - - - - - - - SQL_CONCUR_ROWVER - (integer) - - - - - - - - - SQL_CONCUR_VALUES - (integer) - - - - - - - - - SQL_CURSOR_TYPE - (integer) - - - - - - - - - SQL_CURSOR_FORWARD_ONLY - (integer) - - - - - - - - - SQL_CURSOR_KEYSET_DRIVEN - (integer) - - - - - - - - - SQL_CURSOR_DYNAMIC - (integer) - - - - - - - - - SQL_CURSOR_STATIC - (integer) - - - - - - - - - SQL_KEYSET_SIZE - (integer) - - - - - - - - - SQL_CHAR - (integer) - - - - - - - - - SQL_VARCHAR - (integer) - - - - - - - - - SQL_LONGVARCHAR - (integer) - - - - - - - - - SQL_DECIMAL - (integer) - - - - - - - - - SQL_NUMERIC - (integer) - - - - - - - - - SQL_BIT - (integer) - - - - - - - - - SQL_TINYINT - (integer) - - - - - - - - - SQL_SMALLINT - (integer) - - - - - - - - - SQL_INTEGER - (integer) - - - - - - - - - SQL_BIGINT - (integer) - - - - - - - - - SQL_REAL - (integer) - - - - - - - - - SQL_FLOAT - (integer) - - - - - - - - - SQL_DOUBLE - (integer) - - - - - - - - - SQL_BINARY - (integer) - - - - - - - - - SQL_VARBINARY - (integer) - - - - - - - - - SQL_LONGVARBINARY - (integer) - - - - - - - - - SQL_DATE - (integer) - - - - - - - - - SQL_TIME - (integer) - - - - - - - - - SQL_TIMESTAMP - (integer) - - - - - - - - - SQL_TYPE_DATE - (integer) - - - - - - - - - SQL_TYPE_TIME - (integer) - - - - - - - - - SQL_TYPE_TIMESTAMP - (integer) - - - - - - - - - SQL_BEST_ROWID - (integer) - - - - - - - - - SQL_ROWVER - (integer) - - - - - - - - - SQL_SCOPE_CURROW - (integer) - - - - - - - - - SQL_SCOPE_TRANSACTION - (integer) - - - - - - - - - SQL_SCOPE_SESSION - (integer) - - - - - - - - - SQL_NO_NULLS - (integer) - - - - - - - - - SQL_NULLABLE - (integer) - - - - - - - - - SQL_INDEX_UNIQUE - (integer) - - - - - - - - - SQL_INDEX_ALL - (integer) - - - - - - - - - SQL_ENSURE - (integer) - - - - - - - - - SQL_QUICK - (integer) - - - - - - - - - - <link linkend="ref.openssl">openssl</link> Defined Constants - - - These constants are defined in the - openssl - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - X509_PURPOSE_SSL_CLIENT - (integer) - - - - - - - - - X509_PURPOSE_SSL_SERVER - (integer) - - - - - - - - - X509_PURPOSE_NS_SSL_SERVER - (integer) - - - - - - - - - X509_PURPOSE_SMIME_SIGN - (integer) - - - - - - - - - X509_PURPOSE_SMIME_ENCRYPT - (integer) - - - - - - - - - X509_PURPOSE_CRL_SIGN - (integer) - - - - - - - - - X509_PURPOSE_ANY - (integer) - - - - - - - - - PKCS7_DETACHED - (integer) - - - - - - - - - PKCS7_TEXT - (integer) - - - - - - - - - PKCS7_NOINTERN - (integer) - - - - - - - - - PKCS7_NOVERIFY - (integer) - - - - - - - - - PKCS7_NOCHAIN - (integer) - - - - - - - - - PKCS7_NOCERTS - (integer) - - - - - - - - - PKCS7_NOATTR - (integer) - - - - - - - - - PKCS7_BINARY - (integer) - - - - - - - - - PKCS7_NOSIGS - (integer) - - - - - - - - - OPENSSL_PKCS1_PADDING - (integer) - - - - - - - - - OPENSSL_SSLV23_PADDING - (integer) - - - - - - - - - OPENSSL_NO_PADDING - (integer) - - - - - - - - - OPENSSL_PKCS1_OAEP_PADDING - (integer) - - - - - - - - - OPENSSL_KEYTYPE_RSA - (integer) - - - - - - - - - OPENSSL_KEYTYPE_DSA - (integer) - - - - - - - - - OPENSSL_KEYTYPE_DH - (integer) - - - - - - - - - - <link linkend="ref.oracle">oracle</link> Defined Constants - - - These constants are defined in the - oracle - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - ORA_BIND_INOUT - (integer) - - - - - - - - - ORA_BIND_IN - (integer) - - - - - - - - - ORA_BIND_OUT - (integer) - - - - - - - - - ORA_FETCHINTO_ASSOC - (integer) - - - - - - - - - ORA_FETCHINTO_NULLS - (integer) - - - - - - - - - - <link linkend="ref.pcntl">pcntl</link> Defined Constants - - - These constants are defined in the - pcntl - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - WNOHANG - (integer) - - - - - - - - - WUNTRACED - (integer) - - - - - - - - - SIG_IGN - (integer) - - - - - - - - - SIG_DFL - (integer) - - - - - - - - - SIG_ERR - (integer) - - - - - - - - - SIGHUP - (integer) - - - - - - - - - SIGINT - (integer) - - - - - - - - - SIGQUIT - (integer) - - - - - - - - - SIGILL - (integer) - - - - - - - - - SIGTRAP - (integer) - - - - - - - - - SIGABRT - (integer) - - - - - - - - - SIGIOT - (integer) - - - - - - - - - SIGBUS - (integer) - - - - - - - - - SIGFPE - (integer) - - - - - - - - - SIGKILL - (integer) - - - - - - - - - SIGUSR1 - (integer) - - - - - - - - - SIGSEGV - (integer) - - - - - - - - - SIGUSR2 - (integer) - - - - - - - - - SIGPIPE - (integer) - - - - - - - - - SIGALRM - (integer) - - - - - - - - - SIGTERM - (integer) - - - - - - - - - SIGSTKFLT - (integer) - - - - - - - - - SIGCLD - (integer) - - - - - - - - - SIGCHLD - (integer) - - - - - - - - - SIGCONT - (integer) - - - - - - - - - SIGSTOP - (integer) - - - - - - - - - SIGTSTP - (integer) - - - - - - - - - SIGTTIN - (integer) - - - - - - - - - SIGTTOU - (integer) - - - - - - - - - SIGURG - (integer) - - - - - - - - - SIGXCPU - (integer) - - - - - - - - - SIGXFSZ - (integer) - - - - - - - - - SIGVTALRM - (integer) - - - - - - - - - SIGPROF - (integer) - - - - - - - - - SIGWINCH - (integer) - - - - - - - - - SIGPOLL - (integer) - - - - - - - - - SIGIO - (integer) - - - - - - - - - SIGPWR - (integer) - - - - - - - - - SIGSYS - (integer) - - - - - - - - - SIGBABY - (integer) - - - - - - - - - - <link linkend="ref.pcre">pcre</link> Defined Constants - - - These constants are defined in the - pcre - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - PREG_PATTERN_ORDER - (integer) - - - - - - - - - PREG_SET_ORDER - (integer) - - - - - - - - - PREG_SPLIT_NO_EMPTY - (integer) - - - - - - - - - PREG_SPLIT_DELIM_CAPTURE - (integer) - - - - - - - - - PREG_GREP_INVERT - (integer) - - - - - - - - - - <link linkend="ref.pgsql">pgsql</link> Defined Constants - - - These constants are defined in the - pgsql - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - PGSQL_ASSOC - (integer) - - - - - - - - - PGSQL_NUM - (integer) - - - - - - - - - PGSQL_BOTH - (integer) - - - - - - - - - PGSQL_CONNECTION_BAD - (integer) - - - - - - - - - PGSQL_CONNECTION_OK - (integer) - - - - - - - - - PGSQL_SEEK_SET - (integer) - - - - - - - - - PGSQL_SEEK_CUR - (integer) - - - - - - - - - PGSQL_SEEK_END - (integer) - - - - - - - - - PGSQL_ESCAPE_STRING - (integer) - - - - - - - - - PGSQL_ESCAPE_BYTEA - (integer) - - - - - - - - - PGSQL_EMPTY_QUERY - (integer) - - - - - - - - - PGSQL_COMMAND_OK - (integer) - - - - - - - - - PGSQL_TUPLES_OK - (integer) - - - - - - - - - PGSQL_COPY_OUT - (integer) - - - - - - - - - PGSQL_COPY_IN - (integer) - - - - - - - - - PGSQL_BAD_RESPONSE - (integer) - - - - - - - - - PGSQL_NONFATAL_ERROR - (integer) - - - - - - - - - PGSQL_FATAL_ERROR - (integer) - - - - - - - - - - <link linkend="ref.pspell">pspell</link> Defined Constants - - - These constants are defined in the - pspell - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - PSPELL_FAST - (integer) - - - - - - - - - PSPELL_NORMAL - (integer) - - - - - - - - - PSPELL_BAD_SPELLERS - (integer) - - - - - - - - - PSPELL_RUN_TOGETHER - (integer) - - - - - - - - - - <link linkend="ref.session">session</link> Defined Constants - - - These constants are defined in the - session - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - SID - (string) - - - - - - - - - SID - (string) - - - - - - - - - - <link linkend="ref.sockets">sockets</link> Defined Constants - - - These constants are defined in the - sockets - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - AF_UNIX - (integer) - - - - - - - - - AF_INET - (integer) - - - - - - - - - SOCK_STREAM - (integer) - - - - - - - - - SOCK_DGRAM - (integer) - - - - - - - - - SOCK_RAW - (integer) - - - - - - - - - SOCK_SEQPACKET - (integer) - - - - - - - - - SOCK_RDM - (integer) - - - - - - - - - MSG_OOB - (integer) - - - - - - - - - MSG_WAITALL - (integer) - - - - - - - - - MSG_PEEK - (integer) - - - - - - - - - MSG_DONTROUTE - (integer) - - - - - - - - - SO_DEBUG - (integer) - - - - - - - - - SO_REUSEADDR - (integer) - - - - - - - - - SO_KEEPALIVE - (integer) - - - - - - - - - SO_DONTROUTE - (integer) - - - - - - - - - SO_LINGER - (integer) - - - - - - - - - SO_BROADCAST - (integer) - - - - - - - - - SO_OOBINLINE - (integer) - - - - - - - - - SO_SNDBUF - (integer) - - - - - - - - - SO_RCVBUF - (integer) - - - - - - - - - SO_SNDLOWAT - (integer) - - - - - - - - - SO_RCVLOWAT - (integer) - - - - - - - - - SO_SNDTIMEO - (integer) - - - - - - - - - SO_RCVTIMEO - (integer) - - - - - - - - - SO_TYPE - (integer) - - - - - - - - - SO_ERROR - (integer) - - - - - - - - - SOL_SOCKET - (integer) - - - - - - - - - PHP_NORMAL_READ - (integer) - - - - - - - - - PHP_BINARY_READ - (integer) - - - - - - - - - SOL_TCP - (integer) - - - - - - - - - SOL_UDP - (integer) - - - - - - - - - - <link linkend="ref.swf">swf</link> Defined Constants - - - These constants are defined in the - swf - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - MOD_COLOR - (integer) - - - - - - - - - MOD_MATRIX - (integer) - - - - - - - - - TYPE_PUSHBUTTON - (integer) - - - - - - - - - TYPE_MENUBUTTON - (integer) - - - - - - - - - BSHitTest - (float) - - - - - - - - - BSDown - (float) - - - - - - - - - BSOver - (float) - - - - - - - - - BSUp - (float) - - - - - - - - - OverDowntoIdle - (integer) - - - - - - - - - IdletoOverDown - (integer) - - - - - - - - - OutDowntoIdle - (integer) - - - - - - - - - OutDowntoOverDown - (integer) - - - - - - - - - OverDowntoOutDown - (integer) - - - - - - - - - OverUptoOverDown - (integer) - - - - - - - - - OverUptoIdle - (integer) - - - - - - - - - IdletoOverUp - (integer) - - - - - - - - - ButtonEnter - (integer) - - - - - - - - - ButtonExit - (integer) - - - - - - - - - MenuEnter - (integer) - - - - - - - - - MenuExit - (integer) - - - - - - - - - - <link linkend="ref.xml">xml</link> Defined Constants - - - These constants are defined in the - xml - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - XML_ERROR_NONE - (integer) - - - - - - - - - XML_ERROR_NO_MEMORY - (integer) - - - - - - - - - XML_ERROR_SYNTAX - (integer) - - - - - - - - - XML_ERROR_NO_ELEMENTS - (integer) - - - - - - - - - XML_ERROR_INVALID_TOKEN - (integer) - - - - - - - - - XML_ERROR_UNCLOSED_TOKEN - (integer) - - - - - - - - - XML_ERROR_PARTIAL_CHAR - (integer) - - - - - - - - - XML_ERROR_TAG_MISMATCH - (integer) - - - - - - - - - XML_ERROR_DUPLICATE_ATTRIBUTE - (integer) - - - - - - - - - XML_ERROR_JUNK_AFTER_DOC_ELEMENT - (integer) - - - - - - - - - XML_ERROR_PARAM_ENTITY_REF - (integer) - - - - - - - - - XML_ERROR_UNDEFINED_ENTITY - (integer) - - - - - - - - - XML_ERROR_RECURSIVE_ENTITY_REF - (integer) - - - - - - - - - XML_ERROR_ASYNC_ENTITY - (integer) - - - - - - - - - XML_ERROR_BAD_CHAR_REF - (integer) - - - - - - - - - XML_ERROR_BINARY_ENTITY_REF - (integer) - - - - - - - - - XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF - (integer) - - - - - - - - - XML_ERROR_MISPLACED_XML_PI - (integer) - - - - - - - - - XML_ERROR_UNKNOWN_ENCODING - (integer) - - - - - - - - - XML_ERROR_INCORRECT_ENCODING - (integer) - - - - - - - - - XML_ERROR_UNCLOSED_CDATA_SECTION - (integer) - - - - - - - - - XML_ERROR_EXTERNAL_ENTITY_HANDLING - (integer) - - - - - - - - - XML_OPTION_CASE_FOLDING - (integer) - - - - - - - - - XML_OPTION_TARGET_ENCODING - (integer) - - - - - - - - - XML_OPTION_SKIP_TAGSTART - (integer) - - - - - - - - - XML_OPTION_SKIP_WHITE - (integer) - - - - - - - - - - <link linkend="ref.nis">yp</link> Defined Constants - - - These constants are defined in the - yp - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - YPERR_BADARGS - (integer) - - - - - - - - - YPERR_BADDB - (integer) - - - - - - - - - YPERR_BUSY - (integer) - - - - - - - - - YPERR_DOMAIN - (integer) - - - - - - - - - YPERR_KEY - (integer) - - - - - - - - - YPERR_MAP - (integer) - - - - - - - - - YPERR_NODOM - (integer) - - - - - - - - - YPERR_NOMORE - (integer) - - - - - - - - - YPERR_PMAP - (integer) - - - - - - - - - YPERR_RESRC - (integer) - - - - - - - - - YPERR_RPC - (integer) - - - - - - - - - YPERR_YPBIND - (integer) - - - - - - - - - YPERR_YPERR - (integer) - - - - - - - - - YPERR_YPSERV - (integer) - - - - - - - - - YPERR_VERS - (integer) - - - - - - - - - - <link linkend="ref.zlib">zlib</link> Defined Constants - - - These constants are defined in the - zlib - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - FORCE_GZIP - (integer) - - - - - - - - - FORCE_DEFLATE - (integer) - - - - - - - - - - <link linkend="ref.tokenizer">tokenizer</link> Defined Constants - - - These constants are defined in the - tokenizer - extension, and will only be available when that extension has either - been compiled into PHP or dynamically loaded at runtime. - - - - - - T_INCLUDE - (integer) - - - - - - - - - T_INCLUDE_ONCE - (integer) - - - - - - - - - T_EVAL - (integer) - - - - - - - - - T_REQUIRE - (integer) - - - - - - - - - T_REQUIRE_ONCE - (integer) - - - - - - - - - T_LOGICAL_OR - (integer) - - - - - - - - - T_LOGICAL_XOR - (integer) - - - - - - - - - T_LOGICAL_AND - (integer) - - - - - - - - - T_PRINT - (integer) - - - - - - - - - T_PLUS_EQUAL - (integer) - - - - - - - - - T_MINUS_EQUAL - (integer) - - - - - - - - - T_MUL_EQUAL - (integer) - - - - - - - - - T_DIV_EQUAL - (integer) - - - - - - - - - T_CONCAT_EQUAL - (integer) - - - - - - - - - T_MOD_EQUAL - (integer) - - - - - - - - - T_AND_EQUAL - (integer) - - - - - - - - - T_OR_EQUAL - (integer) - - - - - - - - - T_XOR_EQUAL - (integer) - - - - - - - - - T_SL_EQUAL - (integer) - - - - - - - - - T_SR_EQUAL - (integer) - - - - - - - - - T_BOOLEAN_OR - (integer) - - - - - - - - - T_BOOLEAN_AND - (integer) - - - - - - - - - T_IS_EQUAL - (integer) - - - - - - - - - T_IS_NOT_EQUAL - (integer) - - - - - - - - - T_IS_IDENTICAL - (integer) - - - - - - - - - T_IS_NOT_IDENTICAL - (integer) - - - - - - - - - T_IS_SMALLER_OR_EQUAL - (integer) - - - - - - - - - T_IS_GREATER_OR_EQUAL - (integer) - - - - - - - - - T_SL - (integer) - - - - - - - - - T_SR - (integer) - - - - - - - - - T_INC - (integer) - - - - - - - - - T_DEC - (integer) - - - - - - - - - T_INT_CAST - (integer) - - - - - - - - - T_DOUBLE_CAST - (integer) - - - - - - - - - T_STRING_CAST - (integer) - - - - - - - - - T_ARRAY_CAST - (integer) - - - - - - - - - T_OBJECT_CAST - (integer) - - - - - - - - - T_BOOL_CAST - (integer) - - - - - - - - - T_UNSET_CAST - (integer) - - - - - - - - - T_NEW - (integer) - - - - - - - - - T_EXIT - (integer) - - - - - - - - - T_IF - (integer) - - - - - - - - - T_ELSEIF - (integer) - - - - - - - - - T_ELSE - (integer) - - - - - - - - - T_ENDIF - (integer) - - - - - - - - - T_LNUMBER - (integer) - - - - - - - - - T_DNUMBER - (integer) - - - - - - - - - T_STRING - (integer) - - - - - - - - - T_STRING_VARNAME - (integer) - - - - - - - - - T_VARIABLE - (integer) - - - - - - - - - T_NUM_STRING - (integer) - - - - - - - - - T_INLINE_HTML - (integer) - - - - - - - - - T_CHARACTER - (integer) - - - - - - - - - T_BAD_CHARACTER - (integer) - - - - - - - - - T_ENCAPSED_AND_WHITESPACE - (integer) - - - - - - - - - T_CONSTANT_ENCAPSED_STRING - (integer) - - - - - - - - - T_ECHO - (integer) - - - - - - - - - T_DO - (integer) - - - - - - - - - T_WHILE - (integer) - - - - - - - - - T_ENDWHILE - (integer) - - - - - - - - - T_FOR - (integer) - - - - - - - - - T_ENDFOR - (integer) - - - - - - - - - T_FOREACH - (integer) - - - - - - - - - T_ENDFOREACH - (integer) - - - - - - - - - T_DECLARE - (integer) - - - - - - - - - T_ENDDECLARE - (integer) - - - - - - - - - T_AS - (integer) - - - - - - - - - T_SWITCH - (integer) - - - - - - - - - T_ENDSWITCH - (integer) - - - - - - - - - T_CASE - (integer) - - - - - - - - - T_DEFAULT - (integer) - - - - - - - - - T_BREAK - (integer) - - - - - - - - - T_CONTINUE - (integer) - - - - - - - - - T_OLD_FUNCTION - (integer) - - - - - - - - - T_FUNCTION - (integer) - - - - - - - - - T_CONST - (integer) - - - - - - - - - T_RETURN - (integer) - - - - - - - - - T_USE - (integer) - - - - - - - - - T_GLOBAL - (integer) - - - - - - - - - T_STATIC - (integer) - - - - - - - - - T_VAR - (integer) - - - - - - - - - T_UNSET - (integer) - - - - - - - - - T_ISSET - (integer) - - - - - - - - - T_EMPTY - (integer) - - - - - - - - - T_CLASS - (integer) - - - - - - - - - T_EXTENDS - (integer) - - - - - - - - - T_OBJECT_OPERATOR - (integer) - - - - - - - - - T_DOUBLE_ARROW - (integer) - - - - - - - - - T_LIST - (integer) - - - - - - - - - T_ARRAY - (integer) - - - - - - - - - T_LINE - (integer) - - - - - - - - - T_FILE - (integer) - - - - - - - - - T_COMMENT - (integer) - - - - - - - - - T_ML_COMMENT - (integer) - - - - - - - - - T_OPEN_TAG - (integer) - - - - - - - - - T_OPEN_TAG_WITH_ECHO - (integer) - - - - - - - - - T_CLOSE_TAG - (integer) - - - - - - - - - T_WHITESPACE - (integer) - - - - - - - - - T_START_HEREDOC - (integer) - - - - - - - - - T_END_HEREDOC - (integer) - - - - - - - - - T_DOLLAR_OPEN_CURLY_BRACES - (integer) - - - - - - - - - T_CURLY_OPEN - (integer) - - - - - - - - - T_PAAMAYIM_NEKUDOTAYIM - (integer) - - - - - - - - - T_DOUBLE_COLON - (integer) - - - - - - - - - - - - -