本文整理匯總了PHP中Renderer::setDebug方法的典型用法代碼示例。如果您正苦於以下問題:PHP Renderer::setDebug方法的具體用法?PHP Renderer::setDebug怎麽用?PHP Renderer::setDebug使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Renderer
的用法示例。
在下文中一共展示了Renderer::setDebug方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: error400
define('SVGO', realpath(SVGO_PATH) . '/svgo -i %s');
define('GZIP', 'gzip -cn6 %1$s > %1$s.gz');
function error400($error = 'Invalid formula')
{
header($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
include '400.php';
}
//ignore_user_abort();
ini_set('max_execution_time', 10);
header('X-Powered-By: S2 Latex Service');
$templater = new Templater(TPL_DIR);
$renderer = new Renderer($templater, TMP_DIR, LATEX_COMMAND, DVISVG_COMMAND, DVIPNG_COMMAND);
if (defined('LOG_DIR')) {
$renderer->setLogDir(LOG_DIR);
}
$renderer->setDebug($isDebug);
$processor = new Processor($renderer, CACHE_SUCCESS_DIR, CACHE_FAIL_DIR);
$processor->addSVGCommand(SVGO);
$processor->addSVGCommand(GZIP);
try {
$processor->parseURI(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
} catch (Exception $e) {
error400($isDebug ? $e->getMessage() : 'Invalid formula');
die;
}
if ($processor->prepareContent()) {
$processor->echoContent();
} else {
error400($isDebug ? $processor->getError() : 'Invalid formula');
}
if (!$isDebug) {