怎么用php命令执行php代码_PHP命令行执行PHP脚本方法教程

星夢妙者
发布: 2025-11-10 14:16:04
原创
694人浏览过
Use php -r to execute inline PHP code without files, e.g., php -r "echo 'Hello, World!';". 2. Run a PHP file via php script.php. 3. Pass arguments accessible through $argv. 4. Make scripts executable with #!/usr/bin/env php and chmod +x. 5. Validate syntax with php -l.

怎么用php命令执行php代码_php命令行执行php脚本方法教程

If you want to execute PHP code or scripts from the command line, using the PHP CLI is a straightforward approach. Here are several methods to achieve this:

The operating environment of this tutorial: MacBook Pro, macOS Sonoma

1. Execute Inline PHP Code with -r Option

The PHP command-line interface provides the -r option to run PHP code directly without creating a file. This is useful for quick tests or small operations.

  • Open your terminal.
  • Type php -r "echo 'Hello, World!';" and press Enter.
  • You should see the output immediately in the console.

Note: Do not include <?php tags when using the -r flag.

立即学习PHP免费学习笔记(深入)”;

2. Run a PHP Script File

You can execute a standalone PHP file by passing its path to the php command. This is the most common way to run PHP applications via CLI.

行者AI
行者AI

行者AI绘图创作,唤醒新的灵感,创造更多可能

行者AI 100
查看详情 行者AI
  • Create a file named test.php with content: <?php echo "Script executed successfully"; ?>
  • In the terminal, navigate to the directory containing the file using cd.
  • Run php test.php.
  • The script output will be printed directly to the terminal.

3. Pass Arguments to PHP Scripts

PHP CLI allows passing arguments to scripts, which can be accessed via the $argv and $argc variables inside the script.

  • Modify your test.php file to include: <?php var_dump($argv); ?>
  • Execute it with arguments: php test.php arg1 arg2.
  • The output will show an array of passed arguments including the script name.

4. Use Shebang for Direct Execution

On Unix-like systems, you can make a PHP script executable by adding a shebang line at the top and setting file permissions.

  • Add #!/usr/bin/env php as the first line in your test.php file.
  • Make it executable: chmod +x test.php.
  • Run it directly: ./test.php.

This method treats the PHP script like a native shell script.

5. Check PHP Syntax Without Execution

Before running a script, you can validate its syntax using the -l (lint) option to prevent runtime errors.

  • Run php -l test.php to check for parsing errors.
  • If the syntax is correct, you'll receive a message confirming no syntax errors were detected.

This is especially helpful when debugging large scripts or deploying code.

以上就是怎么用php命令执行php代码_PHP命令行执行PHP脚本方法教程的详细内容,更多请关注php中文网其它相关文章!

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号