Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
php-python - python.php

python.php

Caricato da: Umberto
Scarica il programma completo

  1. <?php
  2.  
  3. function python($file){
  4. $python = "python ";//python address of python ( now for linux)
  5. shell_exec($python.$file);
  6.  
  7. }
  8. python("/home/umberto/mkfile.py");
  9.  
  10. ?>