PHP learning 1 安裝 配置

2021-05-25 12:03:35 字數 1167 閱讀 6249

1、php.ini 配置

display_errors = on

error_reporting=e_all & ~e_notice

e_all & ~e_notice  (show all errors, except for notices and coding standards warnings.)

e_all & ~e_notice | e_strict  (show all errors, except for notices)

e_compile_error|e_recoverable_error|e_error|e_core_error  (show only errors)

e_all | e_strict  (show all errors, warnings and notices including coding standards.)

比如:變數未初始化,就會在頁面顯示notice: undefined variable: 這樣的提示,隨不影響功能,但是頁面顯示就會出錯。

date.timezone=europe/berlin(default)

修改為:asia/chongqing ,asia/shanghai ,asia/urumqi或者prc

2、php亂碼

----顯示????

1) 網頁檔案head設定編碼

2) php頁面在儲存的時候使用utf-8編碼儲存,可以用記事本,ue,convertz802等轉換檔案

3) 在mysql中新建資料庫的時候資料庫 選擇utf-8編碼既字符集 設定為 utf-8_unicode_ci(unicode (多語言), 不區分大小寫),

庫裡面 表table的 整理 設定為 utf-8_general_ci

表裡面的每個欄位的 整理 都設定為 utf-8_general_ci

可以用alter 修改,或者用視覺化工具修改(屬性中設定),修改後儲存重啟。       

4) 在php連線資料庫的時候,也就是mysql_connect()之後加入

mysql_query("set names 』utf8』 "); 

//  mysql_query("set character_set_client=utf8"); 

// mysql_query("set character_set_results=utf8");

mysql安裝配置隨筆 1

q1 如何在linux上安裝mysql?a1 mysql其實是乙個cs架構的軟體系統。通常情況下,你需要安裝server端和client端。最簡單的方式是通過linux發行版本自帶的安裝軟體來進行安裝,比如redhat系的yum。不過,通過這樣安裝的mysql版本可能不是最新的,如果你想要安裝最新版...

MySQL 1 安裝配置

二 解壓 三 配置部署 四 啟動管理 tar zxvf mysql 5.7.20 linux glibc2.12 x86 64.tar.gzstep1 準備軟體程式 1 basedir mv mysql 5.7.20 linux glibc2.12 x86 64 usr local mysql 2 ...

snmp開發記錄1 安裝配置

開發環境ubuntu13.10 配置編譯 configure make make install 測試 snmpd version net snmp version 5.7.2 web email net snmp coders lists.sourceforge.net 修改編寫 端配置檔案snm...