From 7dd62604842f42f808db8c47534075485b3102f3 Mon Sep 17 00:00:00 2001 From: artemuhi Date: Mon, 25 Mar 2024 23:11:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20phnslib.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phnslib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phnslib.php b/phnslib.php index f42ef7d..dbbee03 100644 --- a/phnslib.php +++ b/phnslib.php @@ -11,7 +11,7 @@ function p2h($data, $keytype) { "data" => $data ]; fwrite($f, json_encode($temp, JSON_UNESCAPED_LINE_TERMINATORS)); - fclose($f) + fclose($f); return shell_exec("python converter.py"); } function h2p($data, $keytype) { @@ -26,7 +26,7 @@ function h2p($data, $keytype) { "data" => $data ]; fwrite($f, json_encode($temp, JSON_UNESCAPED_LINE_TERMINATORS)); - fclose($f) + fclose($f); return shell_exec("python converter.py"); } function seed2hkey($data) { @@ -41,7 +41,7 @@ function seed2hkey($data) { "data" => $data ]; fwrite($f, json_encode($temp, JSON_UNESCAPED_LINE_TERMINATORS)); - fclose($f) + fclose($f); return shell_exec("python converter.py"); } ?> \ No newline at end of file