Home > php教程 > php手册 > body text

如何在 Dos 下运行 PHP 和 MySQL 命令

WBOY
Release: 2016-06-06 19:41:53
Original
945 people have browsed it

1、配置 PHP 如果想在 Dos 下运行 PHP 文件,必须把 PHP 的安装目录添加到环境变量中。步骤如下: 我的电脑 - 属性 - 高级 - 环境变量 - 系统变量,如图: 首先,先观察变量 Path 是否存在,如果不存在的话,可以点击“新建”一个;如果存在并且已经有的话,

1、配置 PHP

如果想在 Dos 下运行 PHP 文件,必须把 PHP 的安装目录添加到环境变量中。步骤如下:

我的电脑 - 属性 - 高级 - 环境变量 - 系统变量,如图:

如何在 Dos 下运行 PHP 和 MySQL 命令

首先,先观察变量 Path 是否存在,如果不存在的话,可以点击“新建”一个;如果存在并且已经有值的话,选中 Path,点击“编辑”,把您电脑里面的 PHP 安装路径追加到已有的 Path 值后即可,注意:使用英文(分号)“;”相隔。

完成上面的操作,您就可以在 Dos 中运行 PHP 文件了,直接在 Dos 键入:php xx.php 即可!

2、配置 MySQL

在环境变量 Path 中添加 MySQL 的 bin 目录即可。

比如:MySQL 的安装路径为:F:\php\mysql,那么在 Path 中就应该添加:;F:\php\mysql\bin

完成后重启 DOS,键入命令:“mysql -u 用户名 -p密码 数据库”   就可以进入MySQL 管理界面

比如:mysql -u root -p1715544 test   // 进入test 数据库(注:参数-p和后面的密码之间没有空格)
如何在 Dos 下运行 PHP 和 MySQL 命令

Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template