- 授权协议: GPLv2
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/Awesomez/PHP-to-OrgChart
- 软件文档: https://github.com/Awesomez/PHP-to-OrgChart
软件介绍
PHP-to-OrgChart 能将 php 多维 array 生成组织结构图。
示例:
$data=array(
'a'=>array(
'aa'=>array(
'aaa'=>'Mike',
'aab'=>'Look',
'aac'=>'Rum',
),
'bb'=>array(
'aaa'=>'123',
'aab'=>'567',
'aac'=>'890',
'bbdd'=>array(
'aaa'=>'123',
'aab'=>'567',
'aac'=>'890',
),
),
),
'b'=>array(
'cc'=>array(
'aaa'=>'Mike',
'aab'=>'Look',
'aac'=>'Rum',
),
'dd'=>array(
'aaa'=>'123',
'aab'=>'567',
'aac'=>'890',
),
),
);
echo '
';
PHPtoOrgChart($data);
echo '
';
Data Structures and Algorithms in Java
Michael T. Goodrich、Roberto Tamassia / Wiley / 2010-01-26 / USD 177.41
* This newest edition examines fundamental data structures by following a consistent object-oriented framework that builds intuition and analysis skills of data structures and algorithms * Presents ne......一起来看看 《Data Structures and Algorithms in Java》 这本书的介绍吧!
