How to execute shell script in php
This article introduces how to directly execute shell scripts in php. Friends in need can refer to it.
code is as follows: 代 Copy code
code example: & lt ;? php $ message = shell_exec ("SUDO/usr/local/nginx/sbin/nginx- t 2>&1");echo "Run result:".$message."
";
The above code directly executes the SHELL statement in PHP.
If there is a return value, 2>&1 is required. It is responsible for redirecting the output strerr to the strout output. Otherwise the return result will be empty.
You can use system, exec and the like to execute shell commands under PHP, but each individual system command calls the shell separately,
The environment must be re-initialized every time. Therefore, if you use PHP to execute multiple commands in succession, you cannot implement functions through multiple systems.
This article provides the following two methods for your reference.
1, use php to generate a shell file and execute it, delete it after completion
Copy the code
Code example:file_put_countents('tmp.sh',"cd /usr/ localecho 'string'ls $callback");
system('tmp.sh');
For multiple commands, just change the line.
2, multiple commands are written directly in one statement, as follows:
Copy code
Code example: system("cd {$path1};if [ ! - d {$path2} ];then n { mkdir -p {$path2} n chmod -R 777 {$path2} n } n fi;find -name '{$etaskid}-{$sid}*' -print | while read na
Copyright statement: This article is the original article of the blogger and may not be reproduced without the permission of the blogger
. The above introduces the implementation method of executing shell script in PHP, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
