From f5e29189f70c5c8532916504a1a22f8c586f6e73 Mon Sep 17 00:00:00 2001 From: navewindre Date: Tue, 11 Nov 2025 08:11:24 +0100 Subject: new web --- web/Result.php | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 web/Result.php (limited to 'web/Result.php') diff --git a/web/Result.php b/web/Result.php deleted file mode 100644 index 52e4c83..0000000 --- a/web/Result.php +++ /dev/null @@ -1,31 +0,0 @@ -ascii =& $ascii; - } - - public function writeFile($path, $lineEnding = "\n") { - $fh = fopen($path,'w'); - foreach($this->ascii as $line) { - foreach($line as $value) { - $value = $this->transformValue($value); - fputs($fh, $value); - } - fputs($fh,$lineEnding); - - } - fclose($fh); - return $this; - } -} -- cgit v1.2.3