php : 术语“php"未被识别为 cmdlet、函数、脚本文件或可运行程序的名称

php : The term #39;php#39; is not recognized as the name of a cmdlet, function, script file, or operable program(php : 术语“php未被识别为 cmdlet、函数、脚本文件或可运行程序的名称)
本文介绍了php : 术语“php"未被识别为 cmdlet、函数、脚本文件或可运行程序的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 这个教程:

I am trying to install and setup Laravel 4 through the Git Shell using this tutorial:

这一切似乎都在工作,直到我必须运行 php artisan key:generate 时它给了我错误:

It all seems to be working until I have to run php artisan key:generate at which point it gives me the error:

php : 术语php"未被识别为 cmdlet、函数、脚本文件或可运行程序的名称

php : The term 'php' is not recognized as the name of a cmdlet, function, script file, or operable program

我四处寻找,但不确定如何设置它以识别 PHP.

I have hunted around and am not sure how to go about setting this up so it recognizes PHP.

有没有人有任何想法或知道设置 Laravel 4 的完整教程?

Does anyone have any ideas or know of a thorough tutorial to get Laravel 4 setup?

推荐答案

尝试将 PHP.exe 的文件夹添加到 System PATH variables,这样 PHP 就可以通过终端访问.

Try adding your PHP.exe's folder to your System PATH variables, so PHP can be accessed via terminal.

例如;C:wampinphpphp5.4.3

要添加新的 PATH 变量,请按照以下步骤操作:

To add new PATH variable, follow this:

  1. 右击我的电脑,选择属性
  2. 选择高级系统设置
  3. 系统属性窗口点击环境变量按钮.
  4. 选择系统变量->PATH 并点击编辑.
  5. 输入你的PHP.exe所在的文件夹.
  1. Right click on My Computer, select Properties
  2. Select Advanced System Settings
  3. In the System Properties window click the Environment Variables button.
  4. Select System Variables -> PATH and click Edit.
  5. Enter the folder where your PHP.exe is located.

如果您正确执行此操作,请重新启动终端并键入 php --version 以检查它是否有效.

If you did this correctly, restart your terminal and type php --version to check if it works.

注意:不要忘记使用 ; 分隔符来分隔路径.

Note: Don't forget to seperate paths by using ; seperator.

这篇关于php : 术语“php"未被识别为 cmdlet、函数、脚本文件或可运行程序的名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)