當前位置: 首頁>>代碼示例>>PHP>>正文


PHP util::link方法代碼示例

本文整理匯總了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>';
 }
開發者ID:RuschGaming,項目名稱:twitch,代碼行數:21,代碼來源:secure_ctrl.php

示例2: index

 function index()
 {
     echo 'Welcome! ' . util::link('Login', 'log', 'in') . ' or ' . util::link('Go To Secure Area', 'secure');
 }
開發者ID:RuschGaming,項目名稱:twitch,代碼行數:4,代碼來源:home_ctrl.php

示例3: out

 public function out()
 {
     unset($_SESSION['id']);
     echo 'You have been logged out. ' . util::link();
 }
開發者ID:RuschGaming,項目名稱:twitch,代碼行數:5,代碼來源:log_ctrl.php


注:本文中的util::link方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。