Linux Cron scheduled execution of PHP code with parameters

Linux Cron scheduled execution of PHP code with parameters

1. Still use PHP script to execute.

Command line fill in:

php /home/jb51.net/public_html/cron.php q1 q2

Then, in the cron.php page, use $argv[1] to get the value of the first parameter q1, and $argv[2] to get the value of the second parameter q2; the value of $argv[0] is the path and file name, which is: /home/jb51.net/public_html/cron.php

Second, use the wget command.

wget: A non-interactive network file grabbing tool under Linux.

Fill in the command line:

wget -d https://www.jb51.net/cron1.php?q1=11\&q2=22

Notice:

wget usage: wget [options] [URL]
Options: -d, --debug displays error output, i.e. debug mode; -q, --quiet quiet mode (do not input any messages).
When you use the -d parameter, the cron scheduled task will still send you debugging information emails. When you use the -q parameter, the system will not send you cron execution status emails. If you want the silent approach, you can use:

wget -q https://www.jb51.net/cron1.php?q1=11\&q2=22

When the wget method passes multiple parameters in the URL, the & symbol needs to be escaped, that is, \&; in addition, the absolute path URL needs to be used.

Third, you can try using curl

The command is:

/usr/bin/curl 'https://www.jb51.net/cron1.php?q=11&b=22' > /dev/null
or
curl --silent --compressed https://www.jb51.net/cron.php?q=1

Note: Piaoyi tried it and the first command was not executed successfully under hostmonster's cron; the second command was executed successfully under the ixwebhosting host.

This is the end of this article about Linux Cron scheduled execution of PHP code with parameters. For more relevant Cron scheduled execution of PHP content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Ideas and codes for timing page generation in asp and php
  • Linux server configuration PHP file download, Chinese garbled characters, how to solve download errors
  • How to solve the problem of uploading large files in pieces using PHP
  • Solution to the problem of a large number of php-cgi.exe processes on the server causing the CPU to occupy 100%
  • Install PHP7.3 version under Linux system
  • PHP Local Outlier Factor Algorithm - Specific Implementation Analysis of Local Outlier Factor (LOF) Algorithm

<<:  HTML displays ellipsis beyond the text... implemented through text-overflow

>>:  CSS to implement QQ browser functions

Recommend

Mybatis paging plug-in pageHelper detailed explanation and simple example

Mybatis paging plug-in pageHelper detailed explan...

Zookeeper unauthorized access test problem

Table of contents Preface Detect Zookeeper servic...

How to stop CSS animation midway and maintain the posture

Preface I once encountered a difficult problem. I...

Two ways to implement HTML to randomly drag content positions

Test: Chrome v80.0.3987.122 is normal There are t...

Vue3+script setup+ts+Vite+Volar project

Table of contents Create a vue + ts project using...

How to install Docker on Windows Server 2016

Recently Microsoft released Windows Server 2016, ...

Vue's vue.$set() method source code case detailed explanation

In the process of using Vue to develop projects, ...

Detailed explanation of Linux CPU load and CPU utilization

CPU Load and CPU Utilization Both of these can re...

How to use border-image to implement text bubble border sample code

During the development activity, I encountered a ...

MySQL learning database operation DML detailed explanation for beginners

Table of contents 1. Insert statement 1.1 Insert ...

Native JavaScript to achieve the effect of carousel

This article shares the specific code for JavaScr...

Zen HTML Elements Friends who use zen coding can collect it

html ¶ <html></html> html:xml ¶ <h...

How to create a swap partition file in Linux

Introduction to Swap Swap (i.e. swap partition) i...