警告,fopen,feof和fgetcsv

时间:2015-06-26 11:42:49

标签: php csv fopen fgetcsv feof

我遇到了麻烦,我无法理解为什么会发生这种错误。

所以当我只运行这段代码时,

function getClientProject($cliente)
{
    $file = fopen("Projetos.csv","r");
    $ArrayCount = 0;
    $bool = false;
    while(! feof($file))
    {
        $data = fgetcsv($file);
        if($data[0] != '')
        {
            if(substr_compare($data[0],$cliente, 0, 3) == 0)
            {
                if($ArrayCount > 0)
                {
                    $total = count($OpenProject);
                    for($i=0;$i<$total;$i++)
                    {
                        if($OpenProject[$i] == $data[0])
                            $bool = true;
                    }
                    if($bool == false)
                    {
                        $OpenProject[$ArrayCount] = $data[0];
                        $ArrayCount++;
                    }
                }else
                {
                    $OpenProject[$ArrayCount] = $data[0];
                    $ArrayCount++;
                }   
            }
        }
    }
    fclose($file);
    return $OpenProject;
}

它工作并返回数组。但是当我以这种方式调用函数时,

include_once 'CRM files/TSread.php';
$arrayC = getClientProject('SLA');

var_dump($arrayC);

不再适用于我和这些错误,

enter image description here

我做错了什么?

路径,我使用的文件是“Projeto.php”:

enter image description here

和我的CRM文件夹: enter image description here

1 个答案:

答案 0 :(得分:1)

您正在使用相对路径打开文件。您假设Projetos.csv始终与TSread.php文件位于同一目录中。虽然,在包含它时,您似乎位于更高的目录(在CRM文件目录之外),因此PHP无法再找到您的CSV文件,因为它现在尝试相对于上层目录打开它。

您可以将完整路径传递到getClientProject方法以避免这种情况。所以,你会得到类似的东西:

$arrayC = getClientProject('SLA', __DIR__ . '/CRM files/Projectos.csv');

显然,您需要稍微更改一下这个新构造函数,所以它应该像这样:

function getClientProject($cliente, $csv) {
    $file = fopen($csv, "r");
    // Followed by the rest of your function