<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.com.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'com.constants.php',
    1 => '预定义常量',
    2 => '预定义常量',
  ),
  'up' => 
  array (
    0 => 'book.com.php',
    1 => 'COM',
  ),
  'prev' => 
  array (
    0 => 'com.configuration.php',
    1 => '运行时配置',
  ),
  'next' => 
  array (
    0 => 'com.error-handling.php',
    1 => 'Errors and error handling',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'zh',
    'path' => 'reference/com/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="com.constants" class="chapter">
 <h1 class="title">预定义常量</h1>

 <p class="simpara">下列常量由此扩展定义，且仅在此扩展编译入 PHP 或在运行时动态载入时可用。</p>
 <dl>
  
   <dt id="constant.clsctx-inproc-server">
    <strong><code><a href="com.constants.php#constant.clsctx-inproc-server">CLSCTX_INPROC_SERVER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The code that creates and manages objects of this class is
     a DLL that runs in the same process as the caller of the
     function specifying the class context.
    </span>
   </dd>
  
  
   <dt id="constant.clsctx-inproc-handler">
    <strong><code><a href="com.constants.php#constant.clsctx-inproc-handler">CLSCTX_INPROC_HANDLER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The code that manages objects of this class is an in-process
     handler. This is a DLL that runs in the client process and
     implements client-side structures of this class when instances
     of the class are accessed remotely.
    </span>
   </dd>
  
  
   <dt id="constant.clsctx-local-server">
    <strong><code><a href="com.constants.php#constant.clsctx-local-server">CLSCTX_LOCAL_SERVER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The EXE code that creates and manages objects of this class runs on
     same machine but is loaded in a separate process space.
    </span>
   </dd>
  
  
   <dt id="constant.clsctx-remote-server">
    <strong><code><a href="com.constants.php#constant.clsctx-remote-server">CLSCTX_REMOTE_SERVER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A remote context. The code that creates and manages objects of this
     class is run on a different computer.
    </span>
   </dd>
  
  
   <dt id="constant.clsctx-server">
    <strong><code><a href="com.constants.php#constant.clsctx-server">CLSCTX_SERVER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Indicates server code, whether in-process, local, or remote. This
     definition ORs <strong><code><a href="com.constants.php#constant.clsctx-inproc-server">CLSCTX_INPROC_SERVER</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.clsctx-local-server">CLSCTX_LOCAL_SERVER</a></code></strong>, and
     <strong><code><a href="com.constants.php#constant.clsctx-remote-server">CLSCTX_REMOTE_SERVER</a></code></strong>.
    </span>
   </dd>
  
  
   <dt id="constant.clsctx-all">
    <strong><code><a href="com.constants.php#constant.clsctx-all">CLSCTX_ALL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Indicates all class contexts. This definition ORs
     <strong><code><a href="com.constants.php#constant.clsctx-inproc-handler">CLSCTX_INPROC_HANDLER</a></code></strong> and
     <strong><code><a href="com.constants.php#constant.clsctx-server">CLSCTX_SERVER</a></code></strong>.
    </span>
   </dd>
  
  
   <dt id="constant.vt-null">
    <strong><code><a href="com.constants.php#constant.vt-null">VT_NULL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     NULL pointer reference.
    </span>
   </dd>
  
  
   <dt id="constant.vt-empty">
    <strong><code><a href="com.constants.php#constant.vt-empty">VT_EMPTY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A property with a type indicator of <strong><code><a href="com.constants.php#constant.vt-empty">VT_EMPTY</a></code></strong> has
     no data associated with it; that is, the size of the value is zero.
    </span>
   </dd>
  
  
   <dt id="constant.vt-int">
    <strong><code><a href="com.constants.php#constant.vt-int">VT_INT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     4-byte signed integer value (equivalent to
     <strong><code><a href="com.constants.php#constant.vt-i4">VT_I4</a></code></strong>).
    </span>
   </dd>
  
  
   <dt id="constant.vt-i1">
    <strong><code><a href="com.constants.php#constant.vt-i1">VT_I1</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     1-byte signed integer.
    </span>
   </dd>
  
  
   <dt id="constant.vt-i2">
    <strong><code><a href="com.constants.php#constant.vt-i2">VT_I2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Two bytes representing a 2-byte signed integer value.
    </span>
   </dd>
  
  
   <dt id="constant.vt-i4">
    <strong><code><a href="com.constants.php#constant.vt-i4">VT_I4</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     4-byte signed integer value.
    </span>
   </dd>
  
  
   <dt id="constant.vt-i8">
    <strong><code><a href="com.constants.php#constant.vt-i8">VT_I8</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     8-byte signed integer value.
    </span>
    <span class="simpara">
     仅限 x64。
    </span>
   </dd>
  
  
   <dt id="constant.vt-uint">
    <strong><code><a href="com.constants.php#constant.vt-uint">VT_UINT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     4-byte unsigned integer (equivalent to
     <strong><code><a href="com.constants.php#constant.vt-ui4">VT_UI4</a></code></strong>).
    </span>
   </dd>
  
  
   <dt id="constant.vt-ui1">
    <strong><code><a href="com.constants.php#constant.vt-ui1">VT_UI1</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     1-byte unsigned integer.
    </span>
   </dd>
  
  
   <dt id="constant.vt-ui2">
    <strong><code><a href="com.constants.php#constant.vt-ui2">VT_UI2</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     2-byte unsigned integer.
    </span>
   </dd>
  
  
   <dt id="constant.vt-ui4">
    <strong><code><a href="com.constants.php#constant.vt-ui4">VT_UI4</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     4-byte unsigned integer.
    </span>
   </dd>
  
  
   <dt id="constant.vt-ui8">
    <strong><code><a href="com.constants.php#constant.vt-ui8">VT_UI8</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     8-byte unsigned integer.
    </span>
    <span class="simpara">
     x64 only
    </span>
   </dd>
  
  
   <dt id="constant.vt-r4">
    <strong><code><a href="com.constants.php#constant.vt-r4">VT_R4</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     32-bit IEEE floating point value.
    </span>
   </dd>
  
  
   <dt id="constant.vt-r8">
    <strong><code><a href="com.constants.php#constant.vt-r8">VT_R8</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     64-bit IEEE floating point value.
    </span>
   </dd>
  
  
   <dt id="constant.vt-bool">
    <strong><code><a href="com.constants.php#constant.vt-bool">VT_BOOL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Boolean value.
    </span>
   </dd>
  
  
   <dt id="constant.vt-error">
    <strong><code><a href="com.constants.php#constant.vt-error">VT_ERROR</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Error code; containing the status code associated with the
     error.
    </span>
   </dd>
  
  
   <dt id="constant.vt-cy">
    <strong><code><a href="com.constants.php#constant.vt-cy">VT_CY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     8-byte two&#039;s complement integer (scaled by 10,000).
    </span>
   </dd>
  
  
   <dt id="constant.vt-date">
    <strong><code><a href="com.constants.php#constant.vt-date">VT_DATE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     64 位浮点数，表示自 <code class="literal">December 31, 1899</code> 以来的天数（不是秒）。例如，<code class="literal">January 1,
     1900</code> 是 <code class="literal">2.0</code>，<code class="literal">January 2, 1900</code> 是 <code class="literal">3.0</code>
     等。这与 <strong><code><a href="com.constants.php#constant.vt-r8">VT_R8</a></code></strong> 的存储方式相同。
    </span>
   </dd>
  
  
   <dt id="constant.vt-bstr">
    <strong><code><a href="com.constants.php#constant.vt-bstr">VT_BSTR</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Pointer to a null-terminated Unicode string.
    </span>
   </dd>
  
  
   <dt id="constant.vt-decimal">
    <strong><code><a href="com.constants.php#constant.vt-decimal">VT_DECIMAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A decimal structure.
    </span>
   </dd>
  
  
   <dt id="constant.vt-unknown">
    <strong><code><a href="com.constants.php#constant.vt-unknown">VT_UNKNOWN</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A pointer to an object that implements the IUnknown interface.
    </span>
   </dd>
  
  
   <dt id="constant.vt-dispatch">
    <strong><code><a href="com.constants.php#constant.vt-dispatch">VT_DISPATCH</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A pointer to a pointer to an object was specified.
    </span>
   </dd>
  
  
   <dt id="constant.vt-variant">
    <strong><code><a href="com.constants.php#constant.vt-variant">VT_VARIANT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A type indicator followed by the corresponding value.
     <strong><code><a href="com.constants.php#constant.vt-variant">VT_VARIANT</a></code></strong> can be used only with
     <strong><code><a href="com.constants.php#constant.vt-byref">VT_BYREF</a></code></strong>.
    </span>
   </dd>
  
  
   <dt id="constant.vt-array">
    <strong><code><a href="com.constants.php#constant.vt-array">VT_ARRAY</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     If the type indicator is combined with
     <strong><code><a href="com.constants.php#constant.vt-array">VT_ARRAY</a></code></strong> by an OR operator, the value is a pointer to a
     <code class="literal">SAFEARRAY</code>. <strong><code><a href="com.constants.php#constant.vt-array">VT_ARRAY</a></code></strong>
     can use the OR with the following data types: <strong><code><a href="com.constants.php#constant.vt-i1">VT_I1</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-ui1">VT_UI1</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-i2">VT_I2</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-ui2">VT_UI2</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-i4">VT_I4</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-ui4">VT_UI4</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-int">VT_INT</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-uint">VT_UINT</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-r4">VT_R4</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-r8">VT_R8</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-bool">VT_BOOL</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-decimal">VT_DECIMAL</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-error">VT_ERROR</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-cy">VT_CY</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-date">VT_DATE</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-bstr">VT_BSTR</a></code></strong>,
     <strong><code><a href="com.constants.php#constant.vt-dispatch">VT_DISPATCH</a></code></strong>, <strong><code><a href="com.constants.php#constant.vt-unknown">VT_UNKNOWN</a></code></strong> and
     <strong><code><a href="com.constants.php#constant.vt-variant">VT_VARIANT</a></code></strong>.
    </span>
   </dd>
  
  
   <dt id="constant.vt-byref">
    <strong><code><a href="com.constants.php#constant.vt-byref">VT_BYREF</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     If the type indicator is combined with <strong><code><a href="com.constants.php#constant.vt-byref">VT_BYREF</a></code></strong>
     by an OR operator, the value is a reference. Reference types are
     interpreted as a reference to data, similar to the reference type in
     C++.
    </span>
   </dd>
  
  
   <dt id="constant.cp-acp">
    <strong><code><a href="com.constants.php#constant.cp-acp">CP_ACP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     默认为 ANSI 编码页。
    </span>
   </dd>
  
  
   <dt id="constant.cp-maccp">
    <strong><code><a href="com.constants.php#constant.cp-maccp">CP_MACCP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Macintosh code page.
    </span>
   </dd>
  
  
   <dt id="constant.cp-oemcp">
    <strong><code><a href="com.constants.php#constant.cp-oemcp">CP_OEMCP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Default to OEM code page.
    </span>
   </dd>
  
  
   <dt id="constant.cp-utf7">
    <strong><code><a href="com.constants.php#constant.cp-utf7">CP_UTF7</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Unicode (UTF-7).
    </span>
   </dd>
  
  
   <dt id="constant.cp-utf8">
    <strong><code><a href="com.constants.php#constant.cp-utf8">CP_UTF8</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Unicode (UTF-8).
    </span>
   </dd>
  
  
   <dt id="constant.cp-symbol">
    <strong><code><a href="com.constants.php#constant.cp-symbol">CP_SYMBOL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     <code class="literal">SYMBOL</code> translations.
    </span>
   </dd>
  
  
   <dt id="constant.cp-thread-acp">
    <strong><code><a href="com.constants.php#constant.cp-thread-acp">CP_THREAD_ACP</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     当前线程的 ANSI 编码页
    </span>
   </dd>
  
  
   <dt id="constant.varcmp-lt">
    <strong><code><a href="com.constants.php#constant.varcmp-lt">VARCMP_LT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The left <code class="literal">bstr</code> is less than right
     <code class="literal">bstr</code>.
    </span>
   </dd>
  
  
   <dt id="constant.varcmp-eq">
    <strong><code><a href="com.constants.php#constant.varcmp-eq">VARCMP_EQ</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The two parameters are equal.
    </span>
   </dd>
  
  
   <dt id="constant.varcmp-gt">
    <strong><code><a href="com.constants.php#constant.varcmp-gt">VARCMP_GT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The left <code class="literal">bstr</code> is greater than right
     <code class="literal">bstr</code>.
    </span>
   </dd>
  
  
   <dt id="constant.varcmp-null">
    <strong><code><a href="com.constants.php#constant.varcmp-null">VARCMP_NULL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Either expression is NULL.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignorecase">
    <strong><code><a href="com.constants.php#constant.norm-ignorecase">NORM_IGNORECASE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore case sensitivity.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignorenonspace">
    <strong><code><a href="com.constants.php#constant.norm-ignorenonspace">NORM_IGNORENONSPACE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore nonspacing characters.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignoresymbols">
    <strong><code><a href="com.constants.php#constant.norm-ignoresymbols">NORM_IGNORESYMBOLS</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore symbols.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignorewidth">
    <strong><code><a href="com.constants.php#constant.norm-ignorewidth">NORM_IGNOREWIDTH</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore string width.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignorekanatype">
    <strong><code><a href="com.constants.php#constant.norm-ignorekanatype">NORM_IGNOREKANATYPE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore Kana type.
    </span>
   </dd>
  
  
   <dt id="constant.norm-ignorekashida">
    <strong><code><a href="com.constants.php#constant.norm-ignorekashida">NORM_IGNOREKASHIDA</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Ignore Arabic kashida characters.
    </span>
    <span class="simpara">
     Availability is dependent upon under lying library.
    </span>
   </dd>
  
  
   <dt id="constant.disp-e-divbyzero">
    <strong><code><a href="com.constants.php#constant.disp-e-divbyzero">DISP_E_DIVBYZERO</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A return error that indicates a divide by zero error.
    </span>
   </dd>
  
  
   <dt id="constant.disp-e-overflow">
    <strong><code><a href="com.constants.php#constant.disp-e-overflow">DISP_E_OVERFLOW</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     An error that indicates that a value could not be coerced to
     its expected representation.
    </span>
   </dd>
  
  
   <dt id="constant.disp-e-badindex">
    <strong><code><a href="com.constants.php#constant.disp-e-badindex">DISP_E_BADINDEX</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     An error that indicates that an array index does not exist.
    </span>
   </dd>
  
  
   <dt id="constant.disp-e-paramnotfound">
    <strong><code><a href="com.constants.php#constant.disp-e-paramnotfound">DISP_E_PARAMNOTFOUND</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     A return value that indicates that one of the parameter IDs
     does not correspond to a parameter on the method.
    </span>
   </dd>
  
  
   <dt id="constant.mk-e-unavailable">
    <strong><code><a href="com.constants.php#constant.mk-e-unavailable">MK_E_UNAVAILABLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     iMoniker COM status code, return on errors where the function call
     failed due to unavailability.
    </span>
   </dd>
  
  
   <dt id="constant.locale-neutral">
    <strong><code><a href="com.constants.php#constant.locale-neutral">LOCALE_NEUTRAL</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     中立地区。调用 NLS API 时一般不使用该常量。而是使用 LOCALE_SYSTEM_DEFAULT。
    </span>
   </dd>
  
  
   <dt id="constant.locale-system-default">
    <strong><code><a href="com.constants.php#constant.locale-system-default">LOCALE_SYSTEM_DEFAULT</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     操作系统的默认区域设置。
    </span>
   </dd>
  
 </dl>
</div>
<?php manual_footer($setup); ?>