使用 PHP 读取 CSV 文件时字符串长度不正确

Incorrect String Length While Reading A CSV File Using PHP

我正在使用以下 php 代码逐行读取 CSV 文件。

<?php
$temp=0;
$s="http://localhost/BulkMessage/Uploads/Number_Files/f7aa248e5fce52411723_CSV_7xxxxxxxx.csv";
try
{
    $file = fopen($s, 'r');
} catch (Exception $ex) {
    $_SESSION['error']="Can't read the file";
    header('Location: '.'../view_sending_rich_message.php');
}
while (($line = fgetcsv($file)) !== FALSE)
{
    echo $line[0]." Length: ".strlen($line[0])."<br>";
}

?>

读取过程按预期进行,但是当我尝试打印一行的长度时,它显示出一些异常行为。 这些是我的 CSV 中的几行示例。

  1. 71455169311
  2. 71455169112222100

这两行的字符串长度都显示为11。第一行是正确的,但第二行有16个字符。似乎对于任何超过 11 个字符的值,字符串长度显示为 11(使用 strlen 时)。 下面显示了上面 2 行的 php 脚本。

71455169311 Length: 11
7.14552E+16 Length: 11

有什么方法可以正确获取字符串长度吗?这种行为的原因是什么? 谢谢

似乎 fgetcsv 可以 return 整数/浮点数,而不仅仅是字符串。如果需要确切的数字,我不知道 fgetcsv 是否也可以 return 一切作为字符串,但如果只需要字符串的长度,则可以使用 strlen(number_format($line[0], 0, '.', '')) (这是假设数字没有小数)。

而不是 strlen() 尝试使用 mb_strlen()