你好我有这个问题。
我有一个要验证的 .csv,所有变量都不能为空。
如果我的 .csv 是
A;ABC;
A;A;
A;A;
A;A;
读取这个文件的 php 看起来像:
$fd = fopen("uploads/".$nombreArchivo,"r");
while (!feof($fd)){
$lineTexto++;
$reg = fgets($fd);
$arreglo = explode(";", $reg);
if(count($arreglo)==3){
if(!$arreglo[2]){
$_SESSION["info"]=$_SESSION["info"]."The cell 3 of the line $lineTexto can not be null<br/>";
}
}
else{
$_SESSION["info"]=$_SESSION["info"]."Número de líneas incorrectos en la linea $lineTexto<br/>";
}
}
结果是
第 4 行的单元格 3 不能为空
那么所有其他有换行符但它们为空的行呢?
谢谢你的时间。