本文整理汇总了PHP中Formatter::set_wordrule方法的典型用法代码示例。如果您正苦于以下问题:PHP Formatter::set_wordrule方法的具体用法?PHP Formatter::set_wordrule怎么用?PHP Formatter::set_wordrule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Formatter
的用法示例。
在下文中一共展示了Formatter::set_wordrule方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: realpath
$topdir = realpath(dirname(__FILE__) . '/../');
include_once $topdir . "/wiki.php";
// Start Main
$Config = getConfig($topdir . '/config.php');
require_once $topdir . '/wikilib.php';
require_once $topdir . '/lib/win32fix.php';
require_once $topdir . '/lib/wikiconfig.php';
require_once $topdir . '/lib/cache.text.php';
require_once $topdir . '/lib/timer.php';
include_once dirname(__FILE__) . '/utils.php';
$Config = wikiConfig($Config);
$DBInfo = new WikiDB($Config);
$p = $DBInfo->getPage('FrontPage');
$formatter = new Formatter($p);
if (empty($formatter->wordrule)) {
$formatter->set_wordrule();
}
$params = array();
if (class_exists('Timer')) {
$timing = new Timer();
$params['timer'] =& $timing;
$params['timer']->Check("load");
}
$options = array();
$options[] = array('f', '', "force update redirect caches");
$options[] = array('d', '', "debug");
$short_opts = '';
// list of short options.
foreach ($options as $item) {
$opt = $item[0];
if ($item[1]) {
示例2: render
function render($pagename, $type, $params = array())
{
global $DBInfo;
$p = $DBInfo->getPage($pagename);
$opts = array();
// parameters for mdict
if ($type == 'mdict') {
$opts = array('prefix' => 'entry:/');
}
$formatter = new Formatter($p, $opts);
if (isset($params['filters'])) {
$formatter->filters = $params['filters'];
}
// trash javascripts
$formatter->get_javascripts();
// init wordrule
if (empty($formatter->wordrule)) {
$formatter->set_wordrule();
}
// render
ob_start();
$formatter->send_page();
flush();
$out = ob_get_contents();
ob_end_clean();
// filter for mdict
if ($type == 'mdict') {
return $formatter->postfilter_repl('mdict', $out);
} else {
return $out;
}
}