我试图了解如何将 UL 的 LI 元素转换为与 codeigniter 的链接,但我在文档中没有看到任何可以解释其外观的地方。我还尝试进行谷歌搜索,但没有找到我想要的结果。
我正在寻找类似的东西:
<UL>
<LI><a href="whatever.php">Test Link</a><LI>
<LI><a href="whatever.php">Test Link</a><LI>
</UL>
这是我到目前为止所拥有的:
<?php
$list = array(
'Login',
'Forgot Password'
);
$attributes = array(
'class' => 'uibutton-group'
);
echo ul($list, $attributes);
?>