From 110004fb47cdff77cc3aeb35c80279a27fdfa7d0 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Fri, 21 Aug 2020 16:07:00 +0200 Subject: more verbose err msg --- it_pipe.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_pipe.class b/it_pipe.class index 1c890a8..a2588fe 100644 --- a/it_pipe.class +++ b/it_pipe.class @@ -216,7 +216,7 @@ function csv($p = []) if (($cols = str_getcsv($line, $splitchar, '"')) && count($schema) == count($cols)) $records[] = (object)array_combine($schema, $cols); else - return (array)it::error((array)$p['it_error'] + ['title' => "schema mismatch: " . count($schema) . " vs " . count($cols), 'body' => [$schema, $line]]); + return (array)it::error((array)$p['it_error'] + ['title' => "csv column count mismatch: " . count($schema) . " in header vs " . count($cols) . " in row", 'body' => [$schema, $cols]]); } setlocale(LC_CTYPE, $oldlocale); -- cgit v1.2.3