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

PHP Exec

Last Updated on Mar 22, 2023

Introduction

Did you know we can run system commands through PHP?

Well not only it’s possible but also it’s very easy.

You can easily run your commands with exec function

exec

exec(command,output,result code)

command: the command you want to run. Like mkdir test

output: if there is any output for your command it will be saved on this variable

resultCode: the code that will be returned from running your command.

So let’s see a couple of examples example

Let’s create a directory called test

<?php
exec('mkdir test', $output, $resultCode);
// output is an empty array because there is no returned value
// resultCode is 0

Let’s get the user.

<?php
exec('whoami', $output, $retval);
// resultCode is 0
// output is:
// Array ( [0] => root )

see how easy it is?

The possibilities are endless!

https://youtu.be/Qcw4sbV-KcQ

Conclusion

Now you know about exec in PHP.

I recommend you to open a PHP files and try to run different system commands with PHP.

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

Key takeaways

  • run system commands
  • exec function

Category: programming

Tags: #php

Join the Newsletter

Subscribe to get my latest content by email.

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

Related Posts

how to use git restore and completely ignore the changes: 3 scenarios (video)
Nov 27, 2022 programming

how to use git restore and completely ignore the changes: 3 scenarios (video)

we are going to talk about ways to ignore the edits we made in a git project and restore the changes by git restore ...

9 Min Read Read More
PHP Date and Time
Mar 21, 2023 programming

PHP Date and Time

Today we are going to learn about date and time in PHP. knowing how to work with dates and times and how to work with different formats of dates is very important. ...

14 Min Read Read More
PHP Pass Arguments by Reference
Jan 12, 2023 programming

PHP Pass Arguments by Reference

Today we are going to talk about splat passing arguments by reference in PHP. By default when we pass argument to a function we pass it by value. ...

6 Min Read Read More
What to Do After Learning Programming
Mar 17, 2024 programming

What to Do After Learning Programming

Congratulations! You've learned programming and now have a solid foundation in coding. But what should you do next? ...

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