如何在yii中显示文本文件的文本内容?

时间:2014-04-02 10:17:56

标签: php yii yii-components

我正在尝试在视图中显示div内部文本文件的内容。我发现在php

<?php
    $myfilename = "mytextfile.txt";
    if(file_exists($myfilename)){
      echo file_get_contents($myfilename);
    }
?> 

可以使用此代码。 Yii中有没有这样的方法来显示文本文件中的内容?

更新

此文件存储在components文件夹下。它不能包含在视图部分中。

2 个答案:

答案 0 :(得分:2)

readfile()

file_get_contents

您可以尝试这两个功能。 :)

答案 1 :(得分:0)

Controller类中有renderFile()个方法。 将您的文本文件放在视图/文件的某处,并使用该方法,如

$this->renderFile('/files/filename.txt');