當前位置: 首頁>>代碼示例>>PHP>>正文


PHP tree::addChild方法代碼示例

本文整理匯總了PHP中tree::addChild方法的典型用法代碼示例。如果您正苦於以下問題:PHP tree::addChild方法的具體用法?PHP tree::addChild怎麽用?PHP tree::addChild使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tree的用法示例。


在下文中一共展示了tree::addChild方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get_children_from_do

 private function get_children_from_do($tokens, &$start, $parent_node, &$last_node, $foroutput = false)
 {
     $tree = new tree();
     $current_node_id = $parent_node;
     $tp = $start;
     $tree = new tree();
     if (!($temp = $this->search_token($tokens, $start, '{', array(';')))) {
         return false;
     }
     $start = $temp;
     $end = $this->get_pair($tokens, $start);
     $this->break_levels[] = $end;
     $new_node = $current_node_id = $current_node_id + 1;
     if (!in_array($parent_node, array_merge($this->break_nodes, $this->continue_nodes, $this->return_nodes))) {
         $tree->addChild($parent_node, $new_node);
     }
     $this->add_tokens_to_be_inserted_after($start + 1, "/*{$new_node}*/" . "\\codespy\\Analyzer::\$executionbranches[__FILE__][__CLASS__][__FUNCTION__][\\codespy\\Analyzer::\$instancenumberfor[__FILE__][__CLASS__][__FUNCTION__]][{$new_node}] = 1;", $foroutput ? $new_node : false);
     if ($children = $this->get_children_from($tokens, $start, $end, $current_node_id, $current_node_id, $foroutput)) {
         $tree->addChildren($children);
     }
     $tp = $end + 1;
     $tp = $this->search_token($tokens, $tp, '(');
     $end = $this->get_pair($tokens, $tp) + 1;
     $new_node = $current_node_id + 1;
     if (!in_array($parent_node, $this->break_nodes)) {
         $tree->addChild($parent_node, $new_node);
     }
     $tree->addChildToAllLeavesOfParent($parent_node, $new_node, array_merge($this->break_nodes, $this->continue_nodes, $this->return_nodes));
     if (isset($this->jumps[$end])) {
         foreach ($this->jumps[$end] as $jn) {
             $tree->addChild($jn, $new_node);
         }
     }
     $this->add_tokens_to_be_inserted_after($end + 1, "/*{$new_node}*/" . "\\codespy\\Analyzer::\$executionbranches[__FILE__][__CLASS__][__FUNCTION__][\\codespy\\Analyzer::\$instancenumberfor[__FILE__][__CLASS__][__FUNCTION__]][{$new_node}] = 1;", $foroutput ? $new_node : false);
     $last_node = $new_node;
     $start = $end;
     array_pop($this->break_levels);
     return $tree;
 }
開發者ID:nicolask,項目名稱:Enhance-PHP,代碼行數:39,代碼來源:codespy.php

示例2: tree

<?php

require_once '../thinkedit.init.php';
require_once ROOT . '/class/tree.class.php';
echo '<pre>';
$tree = new tree();
// we start at "root"
$tree->setNodeId(1);
$tree->addChild('article', 'table', '5');
foreach ($tree->getChildren() as $node) {
    print_r($node);
}
開發者ID:BackupTheBerlios,項目名稱:thinkedit-svn,代碼行數:12,代碼來源:tree.test.php


注:本文中的tree::addChild方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。