本文整理匯總了PHP中Templates::parse方法的典型用法代碼示例。如果您正苦於以下問題:PHP Templates::parse方法的具體用法?PHP Templates::parse怎麽用?PHP Templates::parse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Templates
的用法示例。
在下文中一共展示了Templates::parse方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __autoload
<?php
function __autoload($class_name)
{
require_once $class_name . ".php";
}
error_reporting(0);
$u = null;
try {
$u = new user();
} catch (Exception $e) {
header("Location: login.php");
}
$tpl = new Templates('templates');
$tpl->set('home', 'user', $u->get_login());
$tpl->set('main', 'body', $tpl->parse('home'));
print $tpl->parse('main');
示例2: foreach
$cs = "";
foreach ($snapshot->contacts as $c) {
$tpl->set('contact', array('id' => $c['id'], 'name' => $c['name'], 'email' => $c['email']));
$cs = $cs . $tpl->parse('contact');
}
$tpl->set('contacts', 'list', $cs);
$tpl->set('main', 'content', $tpl->parse('contacts'));
print $tpl->parse('main');
break;
case 'enter':
$u = $_POST['user'];
$p = $_POST['pass'];
$gm->setLoginInfo($u, $p, 1.0);
if ($gm->connect()) {
$gm->saveCookieToBrowser();
header("Location: ?mode=list");
} else {
die("fuck");
header("Location: ?");
}
break;
case 'logout':
$gm->removeCookieFromBrowser();
header("Location: ?");
break;
default:
$tpl = new Templates('tpls');
$tpl->set('main', 'content', $tpl->parse('login'));
print $tpl->parse('main');
break;
}
示例3: Exception
if ($pm == '' or $pc == '') {
throw new Exception('Żadne z podanych haseł nie może być puste.');
}
if ($pm != $pc) {
throw new Exception('Podane hasła nie są jednakowe.');
}
$u = new user($l, $pm, true);
header("Location: ?");
} catch (Exception $e) {
$tpl = new Templates('templates');
$tpl->set('error', 'message', $e->getMessage());
print $tpl->parse('error');
exit;
}
break;
case 'logout':
session_start();
unset($_SESSION['user']);
session_destroy();
header("Location: index.php");
break;
default:
$tpl = new Templates('templates');
$page = $tpl->parse('login');
$tpl->set('main', 'body', $page);
print $tpl->parse('main');
break;
}
?>