这是我的控制器文件。
class MyController extends CController
{
/**
* Index action is the default action in a controller.
*/
public function actionIndex()
{
//call view file like abc.php
}
}
这是我的视图/abc.php 文件
<html>
<head>
<title>Home Page</title>
</head>
<body>
<h1>Home Page</h1>
</body>
</html>
如何将 abc.php 文件调用到我的控制器中。