container.php
来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· PHP 代码 · 共 764 行 · 第 1/2 页
PHP
764 行
<?php
// +---------------------------------------------------------------------+
// | PHP Version 4 |
// +---------------------------------------------------------------------+
// | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group |
// +---------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +---------------------------------------------------------------------+
// | Author: Bertrand Mansion <bmansion@mamasam.com> |
// +---------------------------------------------------------------------+
//
// $Id: Container.php 3466 2005-07-26 13:00:37Z nbm $
require_once 'Config.php';
/**
* Interface for Config containers
*
* @author Bertrand Mansion <bmansion@mamasam.com>
* @package Config
*/
class Config_Container {
/**
* Container object type
* Ex: section, directive, comment, blank
* @var string
*/
var $type;
/**
* Container object name
* @var string
*/
var $name = '';
/**
* Container object content
* @var string
*/
var $content = '';
/**
* Container object children
* @var array
*/
var $children = array();
/**
* Reference to container object's parent
* @var object
*/
var $parent;
/**
* Array of attributes for this item
* @var array
*/
var $attributes;
/**
* Unique id to differenciate nodes
*
* This is used to compare nodes
* Will not be needed anymore when this class will use ZendEngine 2
*
* @var int
*/
var $_id;
/**
* Constructor
*
* @param string $type Type of container object
* @param string $name Name of container object
* @param string $content Content of container object
* @param array $attributes Array of attributes for container object
*/
function Config_Container($type = 'section', $name = '', $content = '', $attributes = null)
{
$this->type = $type;
$this->name = $name;
$this->content = $content;
$this->attributes = $attributes;
$this->parent = null;
$this->_id = uniqid($name.$type, true);
} // end constructor
/**
* Create a child for this item.
* @param string $type type of item: directive, section, comment, blank...
* @param mixed $item item name
* @param string $content item content
* @param array $attributes item attributes
* @param string $where choose a position 'bottom', 'top', 'after', 'before'
* @param object $target needed if you choose 'before' or 'after' for where
* @return object reference to new item or Pear_Error
*/
function &createItem($type, $name, $content, $attributes = null, $where = 'bottom', $target = null)
{
$item =& new Config_Container($type, $name, $content, $attributes);
$result =& $this->addItem($item, $where, $target);
return $result;
} // end func &createItem
/**
* Adds an item to this item.
* @param object $item a container object
* @param string $where choose a position 'bottom', 'top', 'after', 'before'
* @param object $target needed if you choose 'before' or 'after' in $where
* @return mixed reference to added container on success, Pear_Error on error
*/
function &addItem(&$item, $where = 'bottom', $target = null)
{
if ($this->type != 'section') {
return PEAR::raiseError('Config_Container::addItem must be called on a section type object.', null, PEAR_ERROR_RETURN);
}
if (is_null($target)) {
$target =& $this;
}
if (strtolower(get_class($target)) != 'config_container') {
return PEAR::raiseError('Target must be a Config_Container object in Config_Container::addItem.', null, PEAR_ERROR_RETURN);
}
switch ($where) {
case 'before':
$index = $target->getItemIndex();
break;
case 'after':
$index = $target->getItemIndex()+1;
break;
case 'top':
$index = 0;
break;
case 'bottom':
$index = -1;
break;
default:
return PEAR::raiseError('Use only top, bottom, before or after in Config_Container::addItem.', null, PEAR_ERROR_RETURN);
}
if (isset($index) && $index >= 0) {
array_splice($this->children, $index, 0, 'tmp');
} else {
$index = count($this->children);
}
$this->children[$index] =& $item;
$this->children[$index]->parent =& $this;
return $item;
} // end func addItem
/**
* Adds a comment to this item.
* This is a helper method that calls createItem
*
* @param string $content Object content
* @param string $where Position : 'top', 'bottom', 'before', 'after'
* @param object $target Needed when $where is 'before' or 'after'
* @return object reference to new item or Pear_Error
*/
function &createComment($content = '', $where = 'bottom', $target = null)
{
return $this->createItem('comment', null, $content, null, $where, $target);
} // end func &createComment
/**
* Adds a blank line to this item.
* This is a helper method that calls createItem
*
* @return object reference to new item or Pear_Error
*/
function &createBlank($where = 'bottom', $target = null)
{
return $this->createItem('blank', null, null, null, $where, $target);
} // end func &createBlank
/**
* Adds a directive to this item.
* This is a helper method that calls createItem
*
* @param string $name Name of new directive
* @param string $content Content of new directive
* @param mixed $attributes Directive attributes
* @param string $where Position : 'top', 'bottom', 'before', 'after'
* @param object $target Needed when $where is 'before' or 'after'
* @return object reference to new item or Pear_Error
*/
function &createDirective($name, $content, $attributes = null, $where = 'bottom', $target = null)
{
return $this->createItem('directive', $name, $content, $attributes, $where, $target);
} // end func &createDirective
/**
* Adds a section to this item.
*
* This is a helper method that calls createItem
* If the section already exists, it won't create a new one.
* It will return reference to existing item.
*
* @param string $name Name of new section
* @param array $attributes Section attributes
* @param string $where Position : 'top', 'bottom', 'before', 'after'
* @param object $target Needed when $where is 'before' or 'after'
* @return object reference to new item or Pear_Error
*/
function &createSection($name, $attributes = null, $where = 'bottom', $target = null)
{
return $this->createItem('section', $name, null, $attributes, $where, $target);
} // end func &createSection
/**
* Tries to find the specified item(s) and returns the objects.
*
* Examples:
* $directives =& $obj->getItem('directive');
* $directive_bar_4 =& $obj->getItem('directive', 'bar', null, 4);
* $section_foo =& $obj->getItem('section', 'foo');
*
* This method can only be called on an object of type 'section'.
* Note that root is a section.
* This method is not recursive and tries to keep the current structure.
* For a deeper search, use searchPath()
*
* @param string $type Type of item: directive, section, comment, blank...
* @param mixed $name Item name
* @param mixed $content Find item with this content
* @param array $attributes Find item with attribute set to the given value
* @param int $index Index of the item in the returned object list. If it is not set, will try to return the last item with this name.
* @return mixed reference to item found or false when not found
* @see &searchPath()
*/
function &getItem($type = null, $name = null, $content = null, $attributes = null, $index = -1)
{
if ($this->type != 'section') {
return PEAR::raiseError('Config_Container::getItem must be called on a section type object.', null, PEAR_ERROR_RETURN);
}
if (!is_null($type)) {
$testFields[] = 'type';
}
if (!is_null($name)) {
$testFields[] = 'name';
}
if (!is_null($content)) {
$testFields[] = 'content';
}
if (!is_null($attributes) && is_array($attributes)) {
$testFields[] = 'attributes';
}
$itemsArr = array();
$fieldsToMatch = count($testFields);
for ($i = 0, $count = count($this->children); $i < $count; $i++) {
$match = 0;
reset($testFields);
foreach ($testFields as $field) {
if ($field != 'attributes') {
if ($this->children[$i]->$field == ${$field}) {
$match++;
}
} else {
// Look for attributes in array
$attrToMatch = count($attributes);
$attrMatch = 0;
foreach ($attributes as $key => $value) {
if (isset($this->children[$i]->attributes[$key]) &&
$this->children[$i]->attributes[$key] == $value) {
$attrMatch++;
}
}
if ($attrMatch == $attrToMatch) {
$match++;
}
}
}
if ($match == $fieldsToMatch) {
$itemsArr[] =& $this->children[$i];
}
}
if ($index >= 0) {
if (isset($itemsArr[$index])) {
return $itemsArr[$index];
} else {
return false;
}
} else {
if ($count = count($itemsArr)) {
return $itemsArr[$count-1];
} else {
return false;
}
}
} // end func &getItem
/**
* Finds a node using XPATH like format.
*
* The search format is an array:
* array(item1, item2, item3, ...)
*
* Each item can be defined as the following:
* item = 'string' : will match the container named 'string'
* item = array('string', array('name' => 'xyz'))
* will match the container name 'string' whose attribute name is equal to "xyz"
* For example : <string name="xyz">
*
* @param mixed Search path and attributes
*
* @return mixed Config_Container object, array of Config_Container objects or false on failure.
* @access public
*/
function &searchPath($args)
{
if ($this->type != 'section') {
return PEAR::raiseError('Config_Container::searchPath must be called on a section type object.', null, PEAR_ERROR_RETURN);
}
$arg = array_shift($args);
if (is_array($arg)) {
$name = $arg[0];
$attributes = $arg[1];
} else {
$name = $arg;
$attributes = null;
}
// find all the matches for first..
$match =& $this->getItem(null, $name, null, $attributes);
if (!$match) {
return false;
}
if (!empty($args)) {
return $match->searchPath($args);
}
return $match;
} // end func &searchPath
/**
* Return a child directive's content.
*
* This method can use two different search approach, depending on
* the parameter it is given. If the parameter is an array, it will use
* the {@link Config_Container::searchPath()} method. If it is a string,
* it will use the {@link Config_Container::getItem()} method.
*
* Example:
* <code>
* require_once 'Config.php';
* $ini = new Config();
* $conf =& $ini->parseConfig('/path/to/config.ini', 'inicommented');
*
* // Will return the value found at :
* // [Database]
* // host=localhost
* echo $conf->directiveContent(array('Database', 'host')));
*
* // Will return the value found at :
* // date="dec-2004"
* echo $conf->directiveContent('date');
*
* </code>
*
* @param mixed Search path and attributes or a directive name
* @param int Index of the item in the returned directive list.
* Eventually used if args is a string.
*
* @return mixed Content of directive or false if not found.
* @access public
*/
function directiveContent($args, $index = -1)
{
if (is_array($args)) {
$item =& $this->searchPath($args);
} else {
$item =& $this->getItem('directive', $args, null, null, $index);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?