1. 項(xiàng)目框架結(jié)構(gòu)
- index.html 訪問(wèn)入口文件(view層)
- api.php處理入口請(qǐng)求扬舒、返回響應(yīng)數(shù)據(jù)、前期數(shù)據(jù)調(diào)試(control層)
- app/ 具體業(yè)務(wù)處理模塊(module層存數(shù)據(jù))
- libs/ 擴(kuò)展庫(kù)(與業(yè)務(wù)層沒(méi)有直接關(guān)系抬闯、公共調(diào)用井辆、請(qǐng)求數(shù)據(jù)和響應(yīng)數(shù)據(jù))
- static/ 靜態(tài)文件(存放css关筒、js等靜態(tài)文件)
2. PHPStorm設(shè)置使用內(nèi)置server
2.1 PHP5.6 Interpreter
先在setting里配xampp里的PHP5.6和Xdebug,Xdebug需要手動(dòng)設(shè)置路徑杯缺。
這樣就會(huì)在localhost:64332端口顯示網(wǎng)頁(yè)頁(yè)面蒸播。
修改其他端口的地方:
這里是為了與local_web_server的端口(8090)不同,故設(shè)置為8091
2.2 配置build-in webserver
菜單欄萍肆,run-edit configuration袍榆,看到有個(gè)+號(hào),增加一個(gè)PHP build-in web server塘揣,下圖是我的配置
3. 配置本機(jī)的redis
3.1 redis安裝
下載地址:https://github.com/MSOpenTech/redis/releases
用以下命令啟動(dòng):
修改環(huán)境變量(增加:E:/redis;)之后可以redis-server命令直接啟動(dòng)
參考鏈接:http://blog.csdn.net/erlian1992/article/details/54382443
3.2 PHP的redis組件安裝
在wampserver中包雀,默認(rèn)是沒(méi)有提供redis擴(kuò)展的,需要自己下載亲铡。
首先在php中運(yùn)行phpinfo()才写,
<?php
phpinfo();
查看自己的版本,然后下載合適的版本奖蔓,最主要的是下面的這三條數(shù)據(jù):
php version : 5.5.12
Architecture : x64
PHP Extension Build : API20121212,TS,VC11
redis擴(kuò)展是有兩個(gè)文件的: php_igbinary.dll
和php_redis.dll
赞草。
-
php_igbinary.dll
的下載地址:http://windows.php.net/downloads/pecl/releases/igbinary/2.0.1 -
php_redis.dll
的下載地址:
http://windows.php.net/downloads/pecl/releases/redis/2.2.7
在下載php_igbinary和php_redis壓縮包后,將里面的php_igbinary.dll和php_redis.dll放置到wampserver\wamp\bin\php\php5.5.12\ext中吆鹤。
同時(shí)厨疙,在文件wampserver\wamp\bin\php\php5.5.12\php.ini中,我試了下我的wamp需要在
添加上:
;redis
extension=php_igbinary.dll
extension=php_redis.dll
3.3 redis的測(cè)試
在PHPinfo頁(yè)面中沾凄,包含redis這個(gè)擴(kuò)展
再新建一個(gè)redistest.php
<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$count = $redis->exists('count') ? $redis->get('count') : 1;
echo $count;
$redis->set('count', ++$count);
可以看到瀏覽器頁(yè)面中,有數(shù)字會(huì)遞增
參考鏈接:
https://www.xiabingbao.com/php/2017/08/27/window-php-redis.html
https://www.awaimai.com/1861.html
3.4 重新配置server run起來(lái)的方式
按道理來(lái)說(shuō)配完3.3之后知允,redistest.php就可以正常在瀏覽器中l(wèi)ocalhost:8090/phoneLocator/redistest.php看到了,但是撒蟀,顯示說(shuō)Fatal error: Class 'Redis' not found in xxx。這顯然是Redis沒(méi)有正常加載廊镜。那么牙肝,怎么辦呢?查看phpinfo,- 首先配椭,要確保這里有redis的extension虫溜。
- 在run configuration里把PHP build-in web server修改成PHP web page
- 在菜單欄中Tools->Deployment->Configuration中配置 WAMPserver的信息
- 設(shè)置自動(dòng)上傳到服務(wù)器
4. 繼續(xù)跟著視頻走(第3-4個(gè)視頻)
4.1 查看數(shù)據(jù)庫(kù)中的數(shù)據(jù),并清空數(shù)據(jù)庫(kù)
4.2 修改網(wǎng)頁(yè)頁(yè)面編碼
防止頁(yè)面編碼是亂碼股缸,需要安裝chrome插件:Set Character Encoding
https://chrome.google.com/webstore/detail/set-character-encoding/bpojelgakakmcfmjfilgdlmhefphglae
5. 要開(kāi)啟redis-server才能查找成功
不然只會(huì)alert說(shuō)請(qǐng)求異常衡楞。