controller如下:
/**
* PHP codeigniter views中通过循环显示数组数据
*
* @param
* @arrange 512-笔记网: 512Pic.com
**/
<?PHP
class SimpleController extends Controller
{
function index()
{
$data['my_list'] = array("do this","clean up","do that");
$this->load->view('index',$data);
}
}
?>
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
index view
/**
* PHP codeigniter views中通过循环显示数组数据
*
* @param
* @arrange 512-笔记网: 512Pic.com
**/
Index view:
<html>
<head>
<title>display array data</title>
</head>
<body>
<h1>Display array data</h1>
<?PHP
foreach($my_list as $item)
{
echo $item;
}
?>
</body>
</html>
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528483.html