- Feb 25 Tue 2020 18:50
[ PHP ] 日期與時間
- Feb 17 Mon 2020 14:30
[PHP] (錯誤問題: Maximum execution time of 30 seconds exceeded) 的解絕方法。
- Feb 14 Fri 2020 13:14
[PHP] PHP7出現的兩個問號在PHP5的用法
- Jan 05 Sun 2020 20:26
[PHP] 字串函式庫 sprintf 的用法
sprintf
- Jan 05 Sun 2020 20:21
[PHP] 日期加減的方法
$years = date("Y"); //目前年份格式
$months = date("m"); //目前月份格式
$days = date("d"); //目前日期格式
例如:
- Jan 05 Sun 2020 20:18
[PHP] 取得目前網址字串組合的方式
在php中要取得目前網址字串組合的方式,以 http://123.111.222.222/php/index.php?tx=1 為例
$_SERVER['HTTP_HOST'] //網址
$_SERVER['REQUEST_URI'] //包含參數(包含目錄)
$_SERVER['PHP_SELF'] //只有檔案名稱(包含目錄)
$_SERVER[QUERY_STRING] //只取後面參數
答案:
$_SERVER['HTTP_HOST'] → 123.111.222.222
$_SERVER['REQUEST_URI'] → /php/index.php?tx=1
$_SERVER['PHP_SELF'] → /php/index.php
$_SERVER[QUERY_STRING] → tx=1
- Oct 15 Tue 2019 00:53
[PHP] $GLOBALS全局變量與$_SERVER伺服器的資訊
<!doctype html>
<html>
- Oct 14 Mon 2019 23:49
[PHP] 陣列 Array 的使用方法
- Oct 14 Mon 2019 18:06
[PHP] 條件選擇if、 if...else、if...elseif....else 三種方法
- Oct 12 Sat 2019 19:47
[PHP] 產生驗證碼圖片的方法