当前位置: 首页>>代码示例>>PHP>>正文


PHP JpGraphError::SetLogFile方法代码示例

本文整理汇总了PHP中JpGraphError::SetLogFile方法的典型用法代码示例。如果您正苦于以下问题:PHP JpGraphError::SetLogFile方法的具体用法?PHP JpGraphError::SetLogFile怎么用?PHP JpGraphError::SetLogFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JpGraphError的用法示例。


在下文中一共展示了JpGraphError::SetLogFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

<?php

// content="text/plain; charset=utf-8"
require_once 'jpgraph/jpgraph.php';
require_once 'jpgraph/jpgraph_line.php';
require_once 'jpgraph/jpgraph_bar.php';
$l1datay = array(11, 9, 2, 4, 3, 13, 17);
$l2datay = array(23, 12, 5, 19, 17, 10, 15);
JpgraphError::SetImageFlag(false);
JpGraphError::SetLogFile('syslog');
// Create the graph.
$graph = new Graph(400, 200);
$graph->SetScale('intlin');
$graph->img->SetMargin(40, 130, 20, 40);
$graph->SetShadow();
// Create the linear error plot
$l1plot = new LinePlot($l1datay);
$l1plot->SetColor('red');
$l1plot->SetWeight(2);
$l1plot->SetLegend('Prediction');
// Create the bar plot
$bplot = new BarPlot($l2datay);
$bplot->SetFillColor('orange');
$bplot->SetLegend('Result');
// Add the plots to t'he graph
$graph->Add($bplot);
$graph->Add($l1plot);
$graph->title->Set('Adding a line plot to a bar graph v3');
$graph->xaxis->title->Set('X-title');
$graph->yaxis->title->Set('Y-title');
$graph->title->SetFont(FF_FONT1, FS_BOLD);
开发者ID:Lazaro-Gallo,项目名称:psmn,代码行数:31,代码来源:example16.4.php

示例2: dirname

<?php

include_once dirname(__FILE__) . "/ressources/class.templates.inc";
include_once dirname(__FILE__) . '/ressources/class.mysql.inc';
include_once dirname(__FILE__) . '/ressources/jpgraph-3/src/jpgraph.php';
include_once dirname(__FILE__) . '/ressources/jpgraph-3/src/jpgraph_line.php';
include_once dirname(__FILE__) . '/ressources/jpgraph-3/src/jpgraph_pie.php';
include_once dirname(__FILE__) . '/ressources/jpgraph-3/src/jpgraph_pie3d.php';
JpGraphError::SetImageFlag(false);
JpGraphError::SetLogFile('ressources/logs/web/jpgraph.log');
$_GET["BASEPATH"] = dirname(__FILE__) . '/ressources/logs/jpgraph/dansg';
$_GET["IMGPATH"] = "ressources/logs/jpgraph/dansg";
$usersmenus = new usersMenus();
if (!$usersmenus->AsSquidAdministrator) {
    $tpl = new templates();
    echo $tpl->javascript_parse_text('{ERROR_NO_PRIVS}');
    exit;
}
if (isset($_GET["popup"])) {
    popup();
    exit;
}
if (isset($_GET["popup-filters"])) {
    popup_filters();
    exit;
}
if (isset($_GET["days"])) {
    popup_select_days();
    exit;
}
js();
开发者ID:BillTheBest,项目名称:1.6.x,代码行数:31,代码来源:dansguardian.stats.php


注:本文中的JpGraphError::SetLogFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。