每个人都曾试图在平淡的学习、工作和生活中写一篇文章。写作是培养人的观察、联想、想象、思维和记忆的重要手段。写范文的时候需要注意什么呢?有哪些格式需要注意呢?下面是小编帮大家整理的优质范文,仅供参考,大家一起来看看吧。
php数据统计图篇一
《如何做出php数据饼图》特别为需要编程学习的朋友收集整理的,仅供参考。内容如下:
用php做出的动态页面与其他的编程语言相比,php是将程序嵌入到html(标准通用标记语言下的.一个应用)文档中去执行,执行效率比完全生成html标记的cgi要高许多;php还可以执行编译后代码,编译可以达到加密和优化代码运行,使代码运行更快。下面是小编为大家搜索整理的如何做出php数据饼图,希望大家能有所收获,更多精彩内容请及时关注我们考试网!
源代码:
//+------------------------+
//| //公用函数 |
//+------------------------+
define("angle_step", 5); //定义画椭圆弧时的角度步长
function draw_getdarkcolor($img,$clr) //求$clr对应的暗色
{
$rgb = imagecolorsforindex($img,$clr);
return array($rgb["red"]/2,$rgb["green"]/2,$rgb["blue"]/2);
}
function draw_getexy($a, $b, $d) //求角度$d对应的椭圆上的点坐标
{
$d = deg2rad($d);
return array(round($a*cos($d)), round($b*sin($d)));
}
function draw_arc($img,$ox,$oy,$a,$b,$sd,$ed,$clr) //椭圆弧函数
{
$n = ceil(($ed-$sd)/angle_step);
$d = $sd;
list($x0,$y0) = draw_getexy($a,$b,$d);
for($i=0; $i<$n; $i++)
{
$d = ($d+angle_step)>$ed?$ed:($d+angle_step);
list($x, $y) = draw_getexy($a, $b, $d);
imageline($img, $x0+$ox, $y0+$oy, $x+$ox, $y+$oy, $clr);
$x0 = $x;
$y0 = $y;
}
}
function draw_sector($img, $ox, $oy, $a, $b, $sd, $ed, $clr) //画扇面
{
$n = ceil(($ed-$sd)/angle_step);
$d = $sd;
list($x0,$y0) = draw_getexy($a, $b, $d);
imageline($img, $x0+$ox, $y0+$oy, $ox, $oy, $clr);
for($i=0; $i<$n; $i++)
{
$d = ($d+angle_step)>$ed?$ed:($d+angle_step);
list($x, $y) = draw_getexy($a, $b, $d);
imageline($img, $x0+$ox, $y0+$oy, $x+$ox, $y+$oy, $clr);
$x0 = $x;
$y0 = $y;
}
imageline($img, $x0+$ox, $y0+$oy, $ox, $oy, $clr);
list($x, $y) = draw_getexy($a/2, $b/2, ($d+$sd)/2);
s("content_relate");【做出php数据饼图】相关文章:
1.怎样在php导出excel格式数据
2.如何在php中处理protocol buffers数据
3.雅思小作文饼图模板
4.ppt制作饼状图的教程
5.excel制作圆饼图的教程
6.实现php获取表单数据与html嵌入php脚本的技巧
7.如何做出美味的周村烧饼
8.php浮点型的数据的解决方法介绍