如果你想在 Mac 上面搭建一個(gè)本地的 PHP+MySQL 的環(huán)境,那么最好的選擇就是使用 XAMPP。這個(gè)軟件包括了 Apache、PHP、MySQL 和其他必要的組件,而且可以一鍵安裝和啟動(dòng)。
一旦安裝了 XAMPP,你可以通過瀏覽器訪問 http://localhost 來訪問你的本地站點(diǎn)。同時(shí),你也可以通過終端或者其他 MySQL 客戶端工具來進(jìn)入 MySQL 數(shù)據(jù)庫(kù)管理界面。下面就是使用終端方式進(jìn)入 MySQL 數(shù)據(jù)庫(kù)。
$ cd /Applications/XAMPP/xamppfiles/bin
$ ./mysql -u root -p
第一行指定了我們要進(jìn)入 XAMPP 安裝目錄的 bin 目錄,而第二行是通過執(zhí)行 mysql 命令來進(jìn)入 MySQL。這里我們使用了-u root
指定了是以 root 用戶身份登錄,-p
則是告訴 MySQL 要求輸入密碼。
輸入密碼后,你將進(jìn)入 MySQL 的命令行提示符,類似于這樣:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.5.5-10.1.16-MariaDB Source distribution
(...)
現(xiàn)在你已經(jīng)可以使用 SQL 語(yǔ)句來操作你的數(shù)據(jù)庫(kù)了。例如使用show databases;
命令可以查看你當(dāng)前有哪些數(shù)據(jù)庫(kù):
mysql>show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| phpmyadmin |
+--------------------+
(4 rows)
如果你要選擇使用某個(gè)具體的數(shù)據(jù)庫(kù),可以使用use databasename;
命令來切換,例如:
mysql>use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql>
現(xiàn)在你已經(jīng)成功進(jìn)入了 XAMPP 的 MySQL 數(shù)據(jù)庫(kù),并可以方便地對(duì)數(shù)據(jù)庫(kù)進(jìn)行管理和操作啦!