What is the fastest way to execute Python from PHP? -


what fastest way execute python php assuming need pass variables python script , result it?

by using popen() function:

$result = popen('python yourscript.py ' . $args, 'r'); 

Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -