📄 cakeimg.php
字号:
<?
include 'inc/jpgraph/jpgraph.php';
include 'inc/jpgraph/jpgraph_pie.php';
include 'inc/jpgraph/jpgraph_pie3d.php';
$datLst = array (disk_total_space ('/') - disk_free_space ('/'), disk_free_space ('/'));
$labLst = array ('已用空间 (%d%%)', '可用空间 (%d%%)');
$MODULENAME = 'OA所在分区硬盘空间使用情况';
$graph = new PieGraph (500, 300, 'auto');
$graph->title->Set ($MODULENAME);
$graph->title->SetFont (FF_SIMSUN, FS_BOLD, 18);
$graph->title->SetColor ('darkblue');
$graph->legend->SetFont (FF_SIMSUN, FS_NORMAL, 10);
$p1 = new PiePlot3d ($datLst);
$p1->SetTheme ('td');
$p1->SetCenter (0.40000000000000002220446);
$p1->SetAngle (60);
$p1->SetLabelType (PIE_VALUE_ADJPER);
$p1->value->SetFont (FF_SIMSUN, FS_NORMAL, 10);
$p1->SetLegends ($labLst);
$graph->Add ($p1);
$graph->Stroke ();
echo '
';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -