PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Config_Container::addItem | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Config_Container::addItem

Config_Container::addItem() – このアイテムにアイテムを追加する

Synopsis

require_once 'Config/Container.php';

object Config_Container::addItem ( object &$item , string $where = 'bottom' , object $target = = null )

Description

このメソッドは現在の子コンテナに子Config_Containerを加えるでしょう。 したがって、addItem() は単に1つのセクションタイプコンテナと呼ぶことができます。 位置が指定されれば、 オブジェクトはこの位置で加えられるでしょう。 もし'before''after' が位置として指定された場合、ターゲットオブジェクトが必要です。 are specified as position, a target object is required. その後、オブジェクトは、 現在のコンテナ中のターゲットオブジェクトの位置の前、 あるいはその位置の後に加えられるでしょう。

Parameter

object &$item

コンテナオブジェクトです。

string $where

一の選択です。('bottom' , 'top' , 'after' , 'before' )

object $target

もし$where で、 'before''after' を選択した場合に必要です。 $target は、 このコンテナの子供のうちのひとつである必要があります。 ZendEngine2は、デフォルトでリファレンスを受け取ります。 その後、 &$target を代わりに持つことは可能でしょう。

Return value

object - 追加されたオブジェクトのリファレンスです。

Throws

Possible PEAR_Error values
エラーコード エラー値 意味 解決
"

Note

This function can not be called statically.

Example

addItem()でアイテムを追加する使用例

<?php
$section 
=& new Config_Container('section''conf');
$directive =& new Config_Container('directive''user''mansion');
$section->addItem($directive);
?>

別のアイテムに関連する位置とaddItem()でアイテムを追加する使用例

<?php
$section 
=& new Config_Container('section''conf');
$directive =& new Config_Container('directive''user''mansion');
$section->addItem($directive);

$comment =& new Config_Container('comment'null'Here goes my name');
$section->addItem($comment'before'$directive);
?>
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Config_Container::addItem」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Config_Container::addItem」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: