gpt4 book ai didi

php - 如何在 codeigniter 中将数据写入 .txt 文件

转载 作者:行者123 更新时间:2023-12-01 12:34:11 27 4
gpt4 key购买 nike

我在 assets 中有一个名为 login 的文件夹。我的疑问是如何设置路径。

$data=$id.'~'.$expense_type.'~'.$amount.'~'.$exp_date.'<br>';

$todate= date('Y-m-d');
echo $todate;
if ( ! write_file('.../assets/login/log_'.$todate.'.txt', $data))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
}

数据没有问题,但是我设置的路径不对

my path is 'localhost/project/pro/application/assets/login/(specific .txt file)'

输出无法写入文件

最佳答案

使用 APPPATH。这是您的应用程序文件夹的路径

if ( ! write_file(APPPATH."assets/login/log_$todate.txt", $data))

关于php - 如何在 codeigniter 中将数据写入 .txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31072419/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com