How do you integrate a python code to work with php on web application? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

How do you integrate a python code to work with php on web application?

Using python codes to do certain specific function.

29th Jun 2017, 9:13 AM
Victorious Victor TV
Victorious Victor TV - avatar
1 Resposta
0
Depending on what you are doing, system() or popen() may be perfect. Use system() if the Python script has no output, or if you want the Python script's output to go directly to the browser. Use popen() if you want to write data to the Python script's standard input, or read data from the Python script's standard output in php. popen() will only let you read or write, but not both. If you want both, check out proc_open(), but with two way communication between programs you need to be careful to avoid deadlocks, where each program is waiting for the other to do something. If you want to pass user supplied data to the Python script, then the big thing to be careful about is command injection. If you aren't careful, your user could send you data like "; evilcommand ;" and make your program execute arbitrary commands against your will. escapeshellarg() and escapeshellcmd() can help with this, but personally I like to remove everything that isn't a known good character, using something like preg_replace('/[^a-zA-Z0-9]/', '', $str) from stack
29th Jun 2017, 10:41 AM
Harm Zeinstra
Harm Zeinstra - avatar