Home Backend Development PHP Tutorial Learning php cli mode (PHP command line mode)_PHP tutorial

Learning php cli mode (PHP command line mode)_PHP tutorial

Jul 21, 2016 pm 03:09 PM
cli command i line php Command Line study yes model Introduction

Introduction to php_cli mode

php-cli is the abbreviation of php Command Line Interface. As its name means, it is the interface for php to run on the command line, which is different from that on the web server. Running PHP environment (php-cgi, isapi, etc.) In other words, PHP can not only write front-end web pages, it can also be used to write background programs. PHP CLI Shell Scripting applies all the advantages of PHP, enabling the creation of either server-side scripts or system or even applications with GUI! ——Note: Both windows and Linux support php_cli mode

PHP-cli application scenarios:

1. Multi-threaded application
Benefits in this area, quote Brother Niao’s words:

Advantages:
1. When using multiple processes, after the child process ends, the kernel will be responsible for recycling resources
2. When using multiple processes, the abnormal exit of the child process will not cause the entire process Thread Exit. The parent process still has a chance to rebuild the process.
3. A resident main process, only responsible for task distribution, the logic is clearer.

php multi-threading - yes, it is a php multi-threaded application, although Everyone generally believes that PHP does not have multi-threading (curl simulates multi-threading rather than real), but PHP in php_cli mode is completely multi-threaded. At this time, php belongs to a daemon process of Linux. When I wrote "PHP Multi-threaded Batch Collection and Download of Beauty Pictures (Continued)" before, although curl was used to simulate multi-threading in the collection program, execution timeout or memory abort would also be encountered when the browser executed it. Causes the program to be interrupted (it takes several attempts to completely succeed), but if you execute it in php-cli mode, you will find that the program executes very quickly, and the advantages of PHP multi-threaded execution are fully demonstrated.

Note: This multi-threading method is not very mature and is not suitable for large-scale generation applications. It can be used occasionally

2. Execute the php program regularly

I summarized the previous One of the three ways to use "PHP to execute scheduled tasks regularly" is to use the cron method of Linux. So how does this method execute PHP programs regularly? Please see below

3. Develop desktop applications

You can make your graphical user interface (GUI) applications in Windows or Linux using PHP! All you need is PHP's command line interface and a package of GTK. This will allow the creation of truly portable graphical user interface applications (haha, I only knew that php can be used as desktop programs before, but now I know that it uses php_cli mode), and there is no need to learn anything else.

4. Write PHP shell scripts
What should you do if you don’t know how to use bash shell or Perl, but you need some scripts to execute? At this time, you can completely write shell scripts using PHP that you are familiar with. At this time, do you suddenly feel that PHP is too powerful? ——Truly develop one language everywhere!

How to use PHP_CLI

Win the following execution method:
Assume that php.exe is in D:xamppphp and the dos command can be executed like this:

Copy the code The code is as follows:
D:xamppphpphp.exe D:xampphtdocstest.php


and you can execute it test.php file. Here we recommend the xampp integrated environment under the win platform, which is truly N times more powerful than wamp. This integrated package can directly enter dos mode.

Use php_cli under Linux
First find the path where you installed php, take me as an example:

Learning php cli mode (PHP command line mode)_PHP tutorial

php is installed in the path /usr/local/ Copy the code under php/bin/php

Copy the code The code is as follows:
/usr/local/php/bin/php /usr /local/apache/htdocs/a.php


can execute a. php file

What you need to know about PHP_CLI programming
How to detect that the environment supports php_cli mode?

Copy the code The code is as follows:

//Method 1
if (PHP_SAPI === 'cli')
{
// ...
}
//Method 2
if (php_sapi_name() === 'cli')
{
// ...
}


How to receive PHP_ClI Parameters?
By default, the parameter received by /usr/local/php/bin/php is $argv. This variable is fixed! In the php file, var_dump($argv);

gets the following results:

Learning php cli mode (PHP command line mode)_PHP tutorial

You can write a simple processing function to convert this method into a commonly used one. Parameter mode for GET/post.

Simple code:
Copy code The code is as follows:

function parseArgs($argv){
array_shift($argv);
$out = array();
foreach ($argv as $arg) {
if (substr($arg,0,2) == '--'){
$eqPos = strpos($arg,'=');
if ($eqPos === false ){
$key = substr($arg,2);
$out[$key] = isset($out[$key]) ? $out[$key] : true;
} else {
$key = substr($arg,2,$eqPos-2);
$out[$key] = substr($arg,$eqPos+1);
}
} else if (substr($arg,0,1) == '-'){
if (substr($arg,2,1) == '='){
$key = substr($arg, 1,1);
$out[$key] = substr($arg,3);
} else {
$chars = str_split(substr($arg,1));
foreach ($chars as $char){
$key = $char;
$out[$key] = isset($out[$key]) ? $out[$key] : true;
}
}
} else {
$out[] = $arg;
}
}
return $out;
}
var_dump($argv);
var_dump(parseArgs($argv));exit;


Execution result:

Learning php cli mode (PHP command line mode)_PHP tutorial

Of course, there is more than one way to achieve it, You can try other methods to achieve it!

Exception There are many parameters that can be added to the cli of php: for details, please refer to: http://php.net/manual/en/features.commandline.php

About scheduled execution
Cron is a scheduled execution tool under Linux that can run jobs without manual intervention. For periodic jobs, such as backing up data, open /etc/crontab and add:

Copy the code The code is as follows:

/usr/bin/php -f /data/htdocs/test.php


For detailed use of corntab, please refer to the 51cto topic: Linux scheduled tasks - cron service

Reference materials for this article
http://www.jb51.net/article/1716.htm
http:// www.jb51.net/article/37804.htm
http://www.jb51.net/article/37796.htm

Note: 2012-06-16 Added php_cli programming requirements, etc.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327206.htmlTechArticleIntroduction to php_cli mode php-cli is the abbreviation of php Command Line Interface, as its name means, it is php in the command The interface that runs on the line is different from the php environment running on the web server (...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles