Обновить phnslib.php
This commit is contained in:
parent
170560db47
commit
7dd6260484
@ -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");
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user