Free cookie consent management tool by TermsFeed Generator PHP Interacting with Python | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP Interacting with Python

PHP Interacting with Python

Last Updated on Mar 22, 2023

Introduction

Both PHP and Python are very powerful languages. Sometimes you might want to run a python program from your PHP code. It might be a machine learning algorithm, a crawler or anything else.

It’s very easy to do that.

Exec

Do you remember when we talked about running system commands?

We can use the same command and run a python program

Here my python file looks like this:

print("Hello My Friend!")

I can now use the exec function run the command and store the output and then echo that in php like this:

exec('python ./sayHello.py', $output);
// output is: Array ( [0] => Hello amir ! )
echo $output[0];
// Hello My Friend!

It’s always a good idea to escape all the shell commands. To do that you can use escapeshellcmd Function.

This escapes any characters in a string that might be used to trick a shell command into executing arbitrary commands.

Security

So let’s make our code more secure:

$command = escapeshellcmd('python ./sayHello.py);
exec($command, $output);
echo $output[0];
// Hello My Friend!

Arguments

Sometimes your python code might accept some command line arguments. We can also pass those arguments from our PHP code.

My updated python code looks like this:

import sys
if len(sys.argv) > 1:
   name = sys.argv[1]
   print("Hello",name.capitalize(),'!')
else:
   print("Hello My Friend!")

Now if I pass the name it says hello and the name but if I don’t pass any name it will say Hello My Friend

Now let’s pass the name with PHP

$command = escapeshellcmd('python ./sayHello.py amir');
exec($command, $output);
echo $output[0];
// Hello Amir !

And if I don’t pass the name:

$command = escapeshellcmd('python ./sayHello.py');
exec($command, $output);
echo $output[0];
// Hello My Friend!

https://youtu.be/BtP-oa6FtXI

Conclusion

Now you know about running a python code from PHP.

I recommend you to open a PHP files and try to run a simple python code from PHP. then try to pass arguments and parse the response.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • run a python code from php
  • how to make system commands more secure
  • exec and escapeshellcmd function

Category: programming

Tags: #php #python #tips and tricks

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP xml and json
Mar 21, 2023 programming

PHP xml and json

Today we are going to talk about working XML and JSON in PHP. XML and JSON are the most common formats that are used in APIs. knowing how to work with them is essential for any web developer. ...

9 Min Read Read More
PHP calculate distance between 2 places in 9 easy steps
Feb 14, 2023 programming

PHP calculate distance between 2 places in 9 easy steps

Today we are going to talk about calculating the distance between two place in PHP in a few easy steps. ...

7 Min Read Read More
PHP Array Flip
Feb 14, 2023 programming

PHP Array Flip

Today we are going to talk about array flip function in PHP. Array flip is very simple yet useful array function that helps you flip and array. ...

4 Min Read Read More
PHP Password Hashing
Mar 22, 2023 programming

PHP Password Hashing

Today we are going to talk about hashing passwords in PHP. Storing and managing passwords is very important. And in PHP it’s very easy. ...

4 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...