⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runkit.constants.html

📁 php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Predefined Constants</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="intro.runkit.html">Introduction</a></div> <div class="next" style="text-align: right; float: right;"><a href="runkit.setup.html">Installing/Configuring</a></div> <div class="up"><a href="book.runkit.html">runkit</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div> <h1>Predefined Constants</h1> <p class="simpara">The constants below are defined by this extension, andwill only be available when the extension has eitherbeen compiled into PHP or dynamically loaded at runtime.</p> <dl>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_FUNCTIONS</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag indicating     that normal functions should be imported from the     specified file.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_CLASS_METHODS</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag indicating     that class methods should be imported from the     specified file.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_CLASS_CONSTS</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag indicating     that class constants should be imported from the     specified file.  Note that this flag is only meaningful     in PHP versions 5.1.0 and above.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_CLASS_PROPS</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag indicating     that class standard properties should be imported     from the specified file.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_CLASSES</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag representing     a bitwise OR of the <b><tt>RUNKIT_IMPORT_CLASS_*</tt></b>     constants.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_IMPORT_OVERRIDE</tt></b>      (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     <a href="function.runkit-import.html" class="function">runkit_import()</a> flag indicating that     if any of the imported functions, methods, constants,     or properties already exist, they should be replaced with     the new definitions.  If this flag is not set, then any     imported definitions which already exist will be discarded.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_ACC_PUBLIC</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.runkit-method-add.html" class="function">runkit_method_add()</a>    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_ACC_PROTECTED</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.runkit-method-add.html" class="function">runkit_method_add()</a>    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_ACC_PRIVATE</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.runkit-method-add.html" class="function">runkit_method_add()</a>    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>CLASSKIT_ACC_PUBLIC</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.classkit-method-add.html" class="function">classkit_method_add()</a>     Only defined when classkit compatibility is enabled.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>CLASSKIT_ACC_PROTECTED</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.classkit-method-add.html" class="function">classkit_method_add()</a>     Only defined when classkit compatibility is enabled.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>CLASSKIT_ACC_PRIVATE</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.classkit-method-add.html" class="function">classkit_method_add()</a>     Only defined when classkit compatibility is enabled.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>CLASSKIT_AGGREGATE_OVERRIDE</tt></b>     (<a href="language.types.integer.html" class="type integer">integer</a>)   </span>   <dd>    <span class="simpara">     PHP 5 specific flag to <a href="function.classkit-import.html" class="function">classkit_import()</a>     Only defined when classkit compatibility is enabled.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>RUNKIT_VERSION</tt></b>     (<a href="language.types.string.html" class="type string">string</a>)   </span>   <dd>    <span class="simpara">     Defined to the current version of the runkit package.    </span>   </dd>  </dt>  <dt>   <span class="term">    <b><tt>CLASSKIT_VERSION</tt></b>     (<a href="language.types.string.html" class="type string">string</a>)   </span>   <dd>    <span class="simpara">     Defined to the current version of the runkit package.     Only defined when classkit compatibility is enabled.    </span>   </dd>  </dt> </dl></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="intro.runkit.html">Introduction</a></div> <div class="next" style="text-align: right; float: right;"><a href="runkit.setup.html">Installing/Configuring</a></div> <div class="up"><a href="book.runkit.html">runkit</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -