本文整理匯總了PHP中util::link方法的典型用法代碼示例。如果您正苦於以下問題:PHP util::link方法的具體用法?PHP util::link怎麽用?PHP util::link使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類util
的用法示例。
在下文中一共展示了util::link方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: index
public function index()
{
$this->fix();
echo '<h1>Tree of Accounts</h1>';
echo util::link('New Account', 'acc');
echo '<table>';
$this->recurse();
echo '</table>';
echo '<h1>Transaction List</h1>';
echo '<p>' . util::link('Log out', 'log', 'out') . '</p>';
echo '<p>' . util::link('New Transaction', 'trn') . '</p>';
echo '<table>';
foreach ($this->db->query('select * from trn order by dte') as $trn) {
echo '<tr><td colspan="2">' . util::link($trn['name'], 'trn', 'load', array('id' => $trn['id'])) . '</a> ' . $trn['dte'] . '</td></tr>';
foreach ($this->db->query('select ent.amount, acc.name from ent inner join acc on ent.acc_id = acc.id where trn_id=? order by ent.amount desc', $trn['id']) as $ent) {
echo '<tr><td>' . $ent['name'] . '</td><td>' . $ent['amount'] . '</td></tr>';
}
echo '<tr><td colspan="2"><hr /></tr>';
}
echo '</table>';
}
示例2: index
function index()
{
echo 'Welcome! ' . util::link('Login', 'log', 'in') . ' or ' . util::link('Go To Secure Area', 'secure');
}
示例3: out
public function out()
{
unset($_SESSION['id']);
echo 'You have been logged out. ' . util::link();
}