2010-03-13 83 views
1

我在寫一個txt文件來備份某些文章。這是我簡單的代碼Codeigniter Write_file問題

$this->path = APPPATH . "post_backups/"; 
    $string = $this->input->post('post'); 
    $post_title = $this->input->post('post_title'); 
    $this->file = $this->path . $post_title."txt"; 
    write_file($this->file, $string); 
    $this->index(); 

每一件事工作正常,除了這

$this->file = $this->path . $post_title."txt"; 

我想我的名字與職務IE的標題文件:title.txt。

我得到的是這個「titletxt」。 $ post_title應該如何。寫入「txt」以提供txt作爲擴展名?

感謝

回答

1
$this->file = $this->path . $post_title.".txt"; 

沒有報價,.用來連接字符串,因此只需添加一個週期到您的字符串。在引號內部,它被視爲字符文字。

+0

完美!最簡單的事情總是最難看到的。非常感謝你 – Brad 2010-03-13 16:39:20