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'); 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
Post a Comment