This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
apiOld/old/astronomy/sun_dec/api.php
2021-01-01 15:48:55 +08:00

10 lines
221 B
PHP

<?php
$command="python api_core.py";
if($_GET['stamp']!=""){
$command=$command." --stamp ".strval($_GET['stamp'])." ";
}
if($_GET['zone']!=""){
$command=$command." --zone ".$_GET['zone']." ";
}
@os.system($command);
?>