mirror of
https://github.com/php/doc-zh.git
synced 2026-03-25 15:42:15 +01:00
* Update export.xml * Update getmodifiernames.xml * Update reflection.xml * Update construct.xml * Update getarguments.xml * Update getname.xml * Update gettarget.xml * Update isrepeated.xml * Update newinstance.xml * Update reflectionattribute.xml * Update construct.xml * Update export.xml * Update getconstant.xml * Update getconstants.xml * Update getconstructor.xml * Update getdefaultproperties.xml * Update getdoccomment.xml * Update getendline.xml * Update getextension.xml * Update getextensionname.xml * Update getfilename.xml * Update getinterfacenames.xml * Update getinterfaces.xml * Update getmethod.xml * Update getmethods.xml * Update getmodifiers.xml * Update getname.xml * Update getnamespacename.xml * Update getparentclass.xml * Update getproperties.xml * Update getproperty.xml * Update getshortname.xml * Update getstartline.xml * Update getstaticproperties.xml * Update getstaticpropertyvalue.xml * Update gettraitaliases.xml * Update gettraitnames.xml * Update gettraits.xml * Update hasconstant.xml * Update hasmethod.xml * Update hasproperty.xml * Update implementsinterface.xml * Update innamespace.xml * Update isabstract.xml * Update isanonymous.xml * Update iscloneable.xml * Update isfinal.xml * Update isinstance.xml * Update isinstantiable.xml * Update isinterface.xml * Update isinternal.xml * Update issubclassof.xml * Update istrait.xml * Update isuserdefined.xml * Update newinstance.xml * Update newinstanceargs.xml * Update newinstancewithoutconstructor.xml * Update setstaticpropertyvalue.xml * Update tostring.xml * Update reflectionclass.xml
114 lines
3.0 KiB
XML
114 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: ec2fe9a592f794978114ef5021db9f1d00c2e05d Maintainer: daijie Status: ready -->
|
|
<!-- CREDITS: mowangjuanzi -->
|
|
<refentry xml:id="reflectionclass.newinstanceargs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>ReflectionClass::newInstanceArgs</refname>
|
|
<refpurpose>从给出的参数创建一个新的类实例</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis role="ReflectionClass">
|
|
<modifier>public</modifier> <type class="union"><type>object</type><type>null</type></type><methodname>ReflectionClass::newInstanceArgs</methodname>
|
|
<methodparam choice="opt"><type>array</type><parameter>args</parameter><initializer>[]</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
创建一个类的新实例,给出的参数将传递到类的构造函数。
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>args</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
这个参数以 <type>array</type> 形式传递到类的构造函数。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
返回类的新实例,失败时返回 &null;。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors">
|
|
&reftitle.errors;
|
|
<para>
|
|
如果类的构造函数不是 public 的将导致产生 <classname>ReflectionException</classname>。
|
|
</para>
|
|
<para>
|
|
当 <parameter>args</parameter> 指定了一个或多个参数,而类不具有构造函数时,将导致 <classname>ReflectionException</classname>。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><methodname>ReflectionClass::newInstanceArgs</methodname> 的基本用法</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$class = new ReflectionClass('ReflectionFunction');
|
|
$instance = $class->newInstanceArgs(array('substr'));
|
|
var_dump($instance);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
object(ReflectionFunction)#2 (1) {
|
|
["name"]=>
|
|
string(6) "substr"
|
|
}
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><methodname>ReflectionClass::newInstance</methodname></member>
|
|
<member><methodname>ReflectionClass::newInstanceWithoutConstructor</methodname></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|