Config_Container::setDirective()
Config_Container::setDirective() -- Set child directive content or create new directive
概要
require_once 'Config/Container.php'; |
void Config_Container::setDirective (string $name, mixed $content [, int $index = -1])
説明
This is an helper method that will first try to find the item with the
desired name using
getItem(). If the item is found, it will call
its
setContent() method. If not, it will just create
a new directive at the bottom with the given name and content.
パラメータ
- string
$name
Name of the directive to look for
- mixed
$content
New content, usually a string
- integer
$index
Index of the directive to set, in case there are more than one directive with the same name
返り値
object - Newly set directive
注意
この関数は、スタティックにコールする
ことはできません。