Execute php script in a bat file

From LemonWiki共筆
Revision as of 10:46, 1 March 2018 by Planetoid (talk | contribs)
Jump to navigation Jump to search

How to execute php script in a bat file

Case 1: Execute the PHP script without passing parameters

c:\path\to\php.exe -f "c:\path\to\php_script.php"

or

c:\path\to\php.exe "c:\path\to\php_script.php"

Case 2: Execute the PHP script passing parameters

c:\path\to\php.exe -f "c:\path\to\php_script.php" -- -var1=value1

or

c:\path\to\php.exe "c:\path\to\php_script.php" -var1=value1


Options "-f <file> Parse and execute <file>."[1]

Application: Run the PHP script automatically at a specified time

  • Good.gif Win   Using System Scheduler software & specify the path to bat file.
  • Win   Task Scheduler in Windows 10[2] (Windows 系統管理工具 → 工作排程器[3])
  • Linux   Cron

Troubleshootings

Error message[4]: Could not open input file

The code caused the error message:

c:\path\to\php.exe -f "c:\path\to\php_script.php" -var1=value1

After:

c:\path\to\php.exe -f "c:\path\to\php_script.php" -- -var1=value1

or

c:\path\to\php.exe "c:\path\to\php_script.php" -var1=value1


References

Related articles