Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16743 программиста и 1774 робота. Сейчас ищут 1182 программиста ...
Config_Container::createBlank
Вернуться к: Config_Container class
Config_Container::createBlank
Config_Container::createBlank() – Add blank line to item
Synopsis
require_once 'Config/Container.php';
objectConfig_Container::createBlank ( mixed $where = 'bottom' , mixed $target = null )
The current item must be a section. This is a helper method that calls createItem()
Parameter
- string $where
-
Where to create the new item ('top', 'bottom', 'before', 'after')
- object $target
-
Required only if 'before' or 'after' is used for $where
Return value
object - reference to new item
Throws
Error code | Error value | Meaning | Solution |
---|---|---|---|
" |
Note
This function can not be called statically.
Example
Create a new directive using createBlank()
<?php
$section =& new Config_Container('section', 'conf');
$directive =& $section->createDirective('user', 'mansion');
$section->createBlank('before', $directive);
?>
Вернуться к: Config_Container class