我试图用Phalcon PHP创建一个简单的上传脚本,但我不知道如何处理它。
我有一个带有以下代码的控制器,正如你在indexAction函数中看到的那样,我只是试图将简单文本输出到页面上但它无法正常工作。我必须使用其他功能吗?
class ManagerController extends \Phalcon\Mvc\Controller
{
public function initialize(){
}
public function indexAction()
{
if(function_exists('loadServer')){
echo "It works";
}else {
echo "Not Working";
}
}
public $errorMsg = null;
const DOWNLOAD_TOKEN_VAR = 'download_token';
//public function download($forceDownload = null, $downloadToken = null);
public function loadServer()
{
echo 'Hello Welcome!';
}
}
这是我的索引伏特文件
<!DOCTYPE html>
<html>
<head>
<title>Phalcon PHP Framework</title>
</head>
<body>
{{ content() }}
</body>
</html>
答案 0 :(得分:0)
如果您有视图,Phalcon将不会显示您的回声。
只需移除您的视图,回声即可工作或通过
设置变量<!DOCTYPE html>
<html>
<head>
<title>Phalcon PHP Framework</title>
</head>
<body>
{{ hello }}
</body>
</html>
并更改视图以匹配
{{1}}