求个ThinkPHP的详细树状结构图 流程图,该怎么解决

求个ThinkPHP的详细树状结构图 流程图,该怎么解决,第1张

1、在“绘图”工具栏上,单击“插入组织结构图或其他图示”。

2、在接着出现的“图示库”中选择“用于显示层次关系”的第一种后,单击“确定”按钮后会出现一个层次结构图。

3、做一个名为“计算机系统”的结构图,先在第一个框中输入“计算机系统”,因为计算机系统是由软件和硬件两部分组成的,“计算机”下面只有两个“下属”,所以要删除其中的一个文本框,选中其中任意一个文本框,按“Del”删除,然后再在其下面插入相应数量的文本框并输入内容,Word会根据组织结构图的大小自动调整整体大小。

4、不满足于默认的效果,可以在“组织结构图”工具栏上选择“自动套用格式”,其中给出了除“默认”外的16种效果,一定可以满足要求。

流程:

1,首先Browser通过Http协议发送一个请求到Nginx服务器

2,Nginx服务判断是否为静态资源是的话直接放回,否则加载nginx.conf配置文件里的fastcgi模块。

3,Nginx通过fastcgi_pass (默认是127.0.0.0:9000)把对应的请求按照fastcgi协议转发到PHP-FPM,php-fpm的master进程会监听9000端口,然后给php-fpm work进程,work进程 再调用php-cgi解析器并且生成php执行环境再去执行解析对应的PHP文件

4,解析完成再返回给nginx,然后返回给浏览器。

注:

1,php-fpm会生成一个master进程用于监控9000端口,负责分发给下面的work进程

2,fastcgi 是一种协议用于解析器和服务器之间的交互

将下载的得到的jpgraph压缩文件解压至相应的路径

配置

首先需要注意的是:要想适用jpgraph,你的PHP必须开启了GD2扩展。

在jpgraph.php中有以下这样一段代码是设置字体文件路径的

if (!defined('TTF_DIR')) {

if (strstr( PHP_OS, 'WIN') ) {

$sroot = getenv('SystemRoot')

if( empty($sroot) ) {

$t = new ErrMsgText()

$msg = $t->Get(12,$file,$lineno)

die($msg)

}

else {

define('TTF_DIR', $sroot.'/fonts/')

}

} else {

define('TTF_DIR','/usr/share/fonts/truetype/')ç (我的作法是将windows下的fonts文件夹下的字体全部COPY到/usr/local/fonts/truetype)

}

}

要支持中文需要用到simhei.ttf和simsun.ttc这两个字体,在使用中文的时候需要使用SetFont(FF_SIMSUN,FS_BOLD)设置字体。

如果你的文件编码为utf-8,修改方法如下:

代码:

方法一,在程序中修改

$title="流量图"

$title = iconv("UTF-8", "gb2312", $title)

$graph->title->Set($title)

方法二,修改源文件jpgraph_ttf.inc.php

在第99-106行,改成下面这样子

elseif( $aFF === FF_SIMSUN ) {

// Do Chinese conversion

/*

if( $this->g2312 == null ) {

include_once 'jpgraph_gb2312.php'

$this->g2312 = new GB2312toUTF8()

}

return $this->g2312->gb2utf8($aTxt)

*/

return $aTxt

}

jpgraph默认显示汉字时是把汉字编码认为gb2312,转化为utf-8以后再显示。

这样的话,如果你的文件编码是gb2312,SetFont方法的第一个参数为FF_SIMSUN即可。

如果你是utf-8编码你还需要先把汉字编码转化为gb2312,这样你的汉字才可以正常显示。

使用

可以参照jpgraph-2.3.4\src\Examples中的例子。下面是一些常用的:

$graph->title->Set(‘设置图表的标题’)

$graph->xaxis->title->Set("设置X轴的标题")

$graph->yaxis->title->Set("设置Y轴的标题")

//设置字体 如果是中文,第一个参数一般设置为FF_SIMSUN

SetFont(FF_SIMSUN,FS_BOLD,14)

//如设置图表标题的字体

$graph->title->SetFont(FF_SIMSUN,FS_BOLD,14)

//设置颜色

SetColor('red')

Example:

例1. php Jpgraph绘制简单的X-Y坐标图

<?php

include ("../jpgraph.php")

include ("../jpgraph_line.php")

//将要用于图表创建的数据存放在数组中

$data = array(19,23,34,38,45,67,71,78,85,90,96,145)

 

$graph = new Graph(500,300)                                                    //创建新的Graph对象

$graph->SetScale("textlin")                                                    //设置刻度样式

$graph->img->SetMargin(30,30,80,30)                    //设置图表边界

$graph->title->Set("CDN Traffic Total")        //设置图表标题

$graph->title->SetColor("blue")

$graph->title->SetMargin(20)

 

// Create the linear plot

$lineplot=new LinePlot($data)              // 创建新的LinePlot对象

$lineplot->SetLegend("Line(Mbits)")   //设置图例文字

$lineplot->SetColor("red")                 // 设置曲线的颜色

 

// Add the plot to the graph

$graph->Add($lineplot)                     //在统计图上绘制曲线

 

// Display the graph

$graph->Stroke()                         //输出图像

?>

例6.

index.html

 

<html>

<head>

<title>CDN流量查询系统统计</title>

<meta http-equiv="Content-Type" content="text/html charset=gb2312">

<mce:style type="text/css"><!--

.style1 {

       font-size: 16px

       font-weight: bold

}

--></mce:style><style type="text/css" mce_bogus="1">.style1 {

       font-size: 16px

       font-weight: bold

}</style>

</head>

 

<body>

<form name="form1" method="get" action="result.php">

  <p align="center" class="style1"> CDN流量查询系统统计</p>

  <table width="300" border="1" align="center" cellpadding="3" cellspacing="3">

    <tr>

      <td width="85"><strong>查询年份</strong></td>

<td width="188"><select name="acct_yr" id="acct_yr">

  <option value="2009" selected>2008</option>

        <option value="2009" selected>2009</option>

      </select></td>

    </tr>

    <tr>

      <td><strong>起始月份</strong></td>

      <td><select name="start_mth" id="start_mth">

        <option selected>01</option>

        <option>02</option>

        <option>03</option>

        <option>04</option>

        <option>05</option>

        <option>06</option>

<option>07</option>

        <option>08</option>

        <option>09</option>

        <option>10</option>

        <option>11</option>

        <option>12</option>

 

      </select></td>

    </tr>

    <tr>

      <td><strong>终止月份</strong></td>

      <td><select name="end_mth" id="end_mth">

        <option >01</option>

        <option>02</option>

        <option>03</option>

        <option>04</option>

        <option>05</option>

        <option>06</option>

<option>07</option>

        <option>08</option>

        <option>09</option>

        <option>10</option>

        <option>11</option>

        <option selected >12</option>

        </select></td>

    </tr>

    <tr>

      <td><strong>统计图类别</strong></td>

      <td><select name="graph" id="graph">

        <option value="1" selected>线型图</option>

        <option value="2">柱形图</option>

        <option value="3">饼图</option>

        <option value="4">3D饼图</option>

      </select></td>

    </tr>

  </table>

  <p align="center">

    <input type="submit" value="Submit">

    <input type="reset" name="Submit2" value="Reset">

  </p>

</form>

</body>

</html>

 

       case 1:

              $graph = new Graph(400,300)                                               //创建新的Graph对象

              $graph->SetScale("textlin")                                             //设置刻度样式

              $graph->img->SetMargin(30,30,80,30)                     //设置图表边界

              $graph->title->SetFont(FF_SIMSUN,FS_BOLD)                                                 //设置字体

              $graph->title->Set("CDN流量查询")  //设置图表标题

              $lineplot=new LinePlot($data)

              $lineplot->SetLegend("Line")

              $lineplot->SetColor("red")

              $graph->Add($lineplot)

              break

       case 2:

              $graph = new Graph(400,300)    

              $graph->SetScale("textlin")         

              $graph->SetShadow()         

              $graph->img->SetMargin(40,30,20,40)

              $barplot = new BarPlot($data)                                                      //创建BarPlot对象

              $barplot->SetFillColor('blue')                                                       //设置颜色

              $barplot->value->Show()                                                                           //设置显示数字

              $graph->Add($barplot)                                                                              //将柱形图添加到图像中           

              $graph->title->Set("CDN流量查询")                                                                 //设置标题和X-Y轴标题

              $graph->xaxis->title->Set("月份")

              $graph->yaxis->title->Set("流 量(Gbits)")

              $graph->title->SetFont(FF_SIMSUN,FS_BOLD)                                                 //设置字体

              $graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD)

              $graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD)

              break

       case 3:

              $graph = new PieGraph(400,300)

              $graph->SetShadow()

             

              $graph->title->Set("CDN流量查询")

              $graph->title->SetFont(FF_SIMSUN,FS_BOLD)

              $pieplot = newhttps://www.guwengl.com#data)

              $pieplot->SetLegends($gDateLocale->GetShortMonth())          //设置图例

              $graph->Add($pieplot)

              break

      

       default:

              echo "graph参数错误"

              exit

}

$graph->Stroke()

?>


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/299100.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-25
下一篇2023-04-25

发表评论

登录后才能评论

评论列表(0条)

    保存