priorite.php
来自「Bug tracker, and reporter.」· PHP 代码 · 共 17 行
PHP
17 行
<?phpclass Priorite extends Zend_Db_Table { protected $_name = "priorites"; public function getAll(){ $arrays = $this -> fetchAll(); $retour = array(); array_push($retour,''); foreach ($arrays as $indice => $tab){ $retour[$tab -> priorite_id] = ($tab -> priorite_label); } return $retour; } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?