


The problem that the return value of PHP's exec cannot be a negative number in Linux_PHP Tutorial
There is no problem with the exec function in Windows environment, but the return value cannot be negative in Linux.
string exec ( string $command [, array &$output [, int &$return_var ]] )
The third parameter, why can’t it receive negative numbers??
The &$return_var here is the program return value. At first, my answer was that it can be a negative number.
Generally in C language we would write like this
The code is as follows | Copy code | ||||||||
#include Return -5; }
|
This -5 is the return value, but it is customary to write it as 0 or 1.
Note: Many people write the main function as void main() in their C code. This is actually wrong, so I won’t go into details.代码如下 | 复制代码 |
exec("/home/wwwroot/test/rtest.out 2>&1",$out,$a); var_dump($out,$a); array(1) { [0]=> string(3) "^_^" } int(251) |
, php calls are also normal.
The code is as follows | Copy code | ||||
E:devphp535>php -r "exec( 'return.exe',$out,$a);var_dump($a);"
int(-2)
|
The code is as follows | Copy code |
exec("/home/wwwroot/test/ rtest.out 2>&1",$out,$a); var_dump($out,$a); array(1) { [0]=> string(3) "^_^" } int(251) |
The code is as follows | Copy code |
-bash-3.00$ vi main.c -bash-3.00$ gcc -o ./mm main.c -bash-3.00$ ll total 48 drwxr-xr-x 3 www www 4096 May 4 2011 2011 drwxr-xr-x 6 www www 4096 Jun 23 2011 eoc -rwxr-xr-x 1 www www 7131 Feb 1 12:47 hello -rw-r--r-- 1 www www 3 Feb 1 12:51 hello.c -rw-r--r-- 1 www www 99 Feb 1 12:50 main.c -rwxr-xr-x 1 www www 4714 Feb 1 12:51 mm drwxr-xr-x 3 www www 4096 Jun 24 2011 test -bash-3.00$ ./mm ^_^ -bash-3.00$ echo $? 251 -bash-3.00$ |
This way you can see what value exec returns to the OS.
Under Linux, this return value is an unsigned type and returns a positive number, so it is also a positive number when passed to PHP. PHP is actually the value returned by the exec call.
exec directory operation
2down vote For greater control over how the child process will be executed, you can use the proc_open() function:
2 down vote
For greater control over how the child process will be executed, you can use the proc_open() function:
The code is as follows
|
Copy code | ||||
// our ends of any pipes to signal that we're done. Otherwise // the call to proc_close below may block indefinitely. foreach ($pipes as $pipe) {

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

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Configure the apscheduler timing task as a service on macOS platform, if you want to configure the apscheduler timing task as a service, similar to ngin...

Regarding the problem of removing the Python interpreter that comes with Linux systems, many Linux distributions will preinstall the Python interpreter when installed, and it does not use the package manager...

Using python in Linux terminal...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Mastering Debian system log monitoring is the key to efficient operation and maintenance. It can help you understand the system's operating conditions in a timely manner, quickly locate faults, and optimize system performance. This article will introduce several commonly used monitoring methods and tools. Monitoring system resources with the sysstat toolkit The sysstat toolkit provides a series of powerful command line tools for collecting, analyzing and reporting various system resource metrics, including CPU load, memory usage, disk I/O, network throughput, etc. The main tools include: sar: a comprehensive system resource statistics tool, covering CPU, memory, disk, network, etc. iostat: disk and CPU statistics. mpstat: Statistics of multi-core CPUs. pidsta

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

Regarding the choice of Debian system, this article will explore the advantages of Debian system and help you determine whether it is suitable for your needs. The image shows the missing search results related to DebianStrings, which prompts us to look at the Debian system from a broader perspective. Debian Community & Stability: Debian is known for its large and active open source community, which means you can easily access a large amount of documentation, tutorials, and community support to quickly resolve issues you encounter. The stability of the system is also a highlight of Debian, especially in the server environment, which is much more stable than other distributions. Debian vs. Ubuntu: Compared with Ubuntu, Debian
