程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP筆記,韓順平php筆記

PHP筆記,韓順平php筆記

編輯:關於PHP編程

PHP筆記,韓順平php筆記



Mysql
-----------------------------------------------------------------------------

Mysql 改默認密碼
update mysql.user set Password=PASSWORD('123456') WHERE User='root'
FLUSH PRIVILEGES

去了解下MYSQL的范式、反范式、混合范式
還有索引的建立
cmd命令行


全文索引
------------------------------
alter tabletable_reg_c addfulltext(catalog)

repair table tablename quick

select * from table_reg_c where match(`catalog`) against('2 in boolean mode')

select* fromtable_reg_c wherematch(`catalog`) against(2)

UPDATE`infinite_class`.`table_reg_c`SET`catalog`= '0,10000,20000,30000'WHERE`table_reg_c`.`id`= 3;

explainSELECT*FROM`table_reg_c`WHEREmatch(catalog)against('20000')

explain SELECT * FROM `table_reg_c` WHERE match(catalog) against('20000')

 

#Apache
------------------------------------------------------------------------------
Apache\bin\ApacheMonitor.exe

 

#mysqld

----------------------------------------------------
mysqld install 安裝
net start mysql 啟動服務

 

zend 代碼風格
----------------------------------------------------------------
formatter {}

ctrl+shift+f 全選按這個會自動排版了

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved