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 Arrays
Mar 21, 2023 programming

PHP Arrays

Today we are going to learn about arrays in PHP. Array is a datatype that can hold more than one value so instead of having multiple variables you can hold all those values in one variable. ...

9 Min Read Read More
How to Split an Excel File into Multiple Files Using PHP
May 07, 2024 programming

How to Split an Excel File into Multiple Files Using PHP

Sometimes you might have an excel files that you need to split. splitting the file into multiple files with PHP can be easily done. ...

9 Min Read Read More
How to Combine Excel Files Using Python
May 08, 2024 programming

How to Combine Excel Files Using Python

Sometimes you might have many excel files that you need to combine, whether it's reports, user data or anything else, merging them into one file with Python can be easily done. ...

9 Min Read Read More
Vue.js Beginner to Advanced 2025: Complete Guide
Jul 21, 2025 programming

Vue.js Beginner to Advanced 2025: Complete Guide

Vue.js has evolved into one of the most popular JavaScript frameworks for building dynamic web applications. it continues to strike a balance between simplicity and capability, offering a progressive approach to front-end development. ...

33 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 ...