0

What is the fastest way to execute Python from PHP assuming that I need to pass variables to Python script and get result from it?

2

1 Answer 1

2

By using the popen() function:

$result = popen('python yourscript.py ' . $args, 'r');
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.