本文整理汇总了PHP中HTML_Progress::hasErrors方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML_Progress::hasErrors方法的具体用法?PHP HTML_Progress::hasErrors怎么用?PHP HTML_Progress::hasErrors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML_Progress
的用法示例。
在下文中一共展示了HTML_Progress::hasErrors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: HTML_Progress
<?php
/**
* Easy set options of a progress meter with PEAR::Config package
* and a configuration container style 'iniCommented'.
*
* @version $Id: inicommented.php,v 1.2 2005/07/25 10:25:43 farell Exp $
* @author Laurent Laville <pear@laurent-laville.org>
* @package HTML_Progress
* @subpackage Examples
*/
require 'HTML/Progress.php';
$bar = new HTML_Progress();
$bar->setModel('javadanse.ini', 'inicommented');
if (HTML_Progress::hasErrors()) {
$err = HTML_Progress::getError();
die('<h1>Your configuration file is erroneous</h1>' . $err['message']);
}
?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Model Progress example</title>
<style type="text/css">
<!--
<?php
echo $bar->getStyle();
?>
示例2:
<?php
require_once 'HTML/Progress.php';
$bar = new HTML_Progress();
$e = $bar->setAnimSpeed(10000);
// < - - - will generate an API error
if ($bar->hasErrors()) {
$err = $bar->getError();
echo '<h1>Catch HTML_Progress Error</h1>';
echo '<pre>';
print_r($err);
echo '</pre>';
}