PHP開發常用程式碼集錦

志遠電子發表於2019-02-16

1、輸出中文亂碼時,請在前面加入如下程式碼:

header("Content-type: text/html; charset=utf-8");

2、宣告一個變數並賦值:

$var=0;

3、宣告一個陣列:

$array=array();

4、判斷一個變數是否為空

if(empty($var){
    echo "變數為空";
}else{
    echo "變數不為空";
}

5、獲取當前日期和時間

$datatime = date("Y-m-d H:i:s",time());

6、跳轉到指定頁面

header("location:../index.php");

7、定時3秒跳轉到指定頁面

header("refresh:3;url=../index.php");//定時3秒後跳轉到index.php

相關文章