dqzuo0327 2016-01-20 11:00
浏览 33
已采纳

PHP - 来自csv的字符串报告更多字符

So, I'm making this easy register check page, where a user can enter an ID, and get the results matching that ID from a CSV file.

Problem I'm having, is that for some reason I can't get a good match. Or, it matches every single line.

var_dump on the two comparing strings gives me this:

string(7) "AKM" string(3) "AKM"

AKM is the userID in this example. I've tried utf8 encoding and tried searching eeverywhere. Just cant figure out why I do not get a match, and why var_dump reports AKM to be 7 characters.

Any idea?

Code below:

$file = 'report/report.csv';
$startRow = 6;
$hms = $_GET["hms"];

$csv = array_map(function($v){return str_getcsv($v, "\t");}, file($file));
$csv = array_slice($csv, 6);

foreach($csv as $row){
if (strpos($row,$hms) !== false) {
    $start = strpos($row[1], '(') - 2;
    $end = strlen($row[1]) - strpos($row[1], ')');

    $userID = substr($row[1],0,$start);
    $userName = substr($row[1],$start+3,-2);

    if($row[3] == "true"){
        $passed = "Bestått (".$row[4].")";
    }else{
        $passed = "Ikke bestått";
    }

    $result = [
        "id" => $userID,
        "name" => $userName,
        "passed" => $passed, 
        "datePassed" => $row[7],
        "timeSpent" => $row[6],
    ];

    var_dump($result);
}
}

This is how the CSV looks like:

response

data

identity_uid identity_caption completion passed result attempts time last_access U_5A69E39671310F44A2333C9206DAD20C xxx (Name) 100.0 true 82.6 3 00:57:09 2016/01/04 10:28:54 U_DF5A47B8E1A6E247AA338F571A8F63B1 yyy (Name) 5.0 false 0.0 3 00:04:48 2016/01/15 07:26:05

EDIT: This is the hidden characters I found now:

'' . "\0" . 'A' . "\0" . 'K' . "\0" . 'M' . "\0" . ''
  • 写回答

1条回答 默认 最新

  • dongmubei7950 2016-01-20 11:26
    关注

    The UTF-8 encoding for Unicode Character 'LATIN CAPITAL LETTER A' (U+0041) is 0x41. Since you have 0x0041 your file is UTF-16 Big Endian.

    If you app uses UTF-8 you'll have to convert. You can use iconv() or mb_convert_encoding().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条