mirror of
https://github.com/php/doc-ja.git
synced 2026-03-30 11:02:18 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@185798 c90b9560-bf6c-de11-be94-00142212c4b1
60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision: 1.7 $ -->
|
|
<!-- EN-Revision: 1.7 Maintainer: hirokawa Status: ready -->
|
|
<!-- CREDITS: shimooka -->
|
|
<refentry id="function.call-user-method-array">
|
|
<refnamediv>
|
|
<refname>call_user_method_array</refname>
|
|
<refpurpose>
|
|
パラメータの配列を指定してユーザメソッドをコールする[古い関数]
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>説明</title>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>call_user_method_array</methodname>
|
|
<methodparam><type>string</type><parameter>method_name</parameter></methodparam>
|
|
<methodparam><type>object</type><parameter role="reference">obj</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>paramarr</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<warning>
|
|
<para>
|
|
PHP 4.1.0以降、<function>call_user_method</function>関数は古い関数
|
|
となっています。代わりに<literal>array(&$obj,
|
|
"method_name")</literal>構文を指定して
|
|
<function>call_user_func</function>等を使用してください。
|
|
</para>
|
|
</warning>
|
|
<para>
|
|
パラメータ<parameter>paramarr</parameter>を使用してユーザ定義オブジェ
|
|
クト<parameter>obj</parameter>から
|
|
<parameter>method_name</parameter>で参照されるメソッドをコールします。
|
|
</para>
|
|
<para>
|
|
<function>call_user_func_array</function>,
|
|
<function>call_user_func</function> も参照ください。
|
|
</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:"../../../../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
|
|
-->
|