本文整理汇总了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();
}