我正在写一个txt文件来备份某些帖子。这是我的简单代码
$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作为扩展名吗?
由于
答案 0 :(得分:1)
$this->file = $this->path . $post_title.".txt";
未引用,.
用于连接字符串,因此只需在字符串中添加句点即可。在引号内部,它被视为字符文字。