虽然我的文件名和位置设置正确但我插入时出错。任何解决方案? 提前致谢...以下是我的代码:
persons.values()*.age = 0
错误消息:警告:fopen(C:\ xampp \ htdocs \ formtest.csv):失败 open stream:没有这样的文件或目录 第15行的C:\ xampp \ htdocs \ form \ upload.php
答案 0 :(得分:0)
在定义值Form
之后添加反斜杠(' \')
define('CSV_PATH','C:\xampp\htdocs\form');
更改为
define('CSV_PATH','C:\xampp\htdocs\form\');
OR
在CSV文件名
之前添加反斜杠(' \')// Name of your CSV file
$csv_file = CSV_PATH . "test.csv";
更改为
$csv_file = CSV_PATH . "\test.csv";