PHP開發經常使用代碼集錦

一、輸出中文亂碼時,請在前面加入以下代碼:php

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

二、聲明一個變量並賦值:html

$var=0;

三、聲明一個數組:數組

$array=array();

四、判斷一個變量是否爲空url

if(empty($var){
    echo "變量爲空";
}else{
    echo "變量不爲空";
}

五、獲取當前日期和時間code

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

六、跳轉到指定頁面htm

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

七、定時3秒跳轉到指定頁面utf-8

header("refresh:3;url=../index.php");//定時3秒後跳轉到index.php
相關文章
相關標籤/搜索