php 常用函式總結

liubing300發表於2012-03-22

陣列:【重點1】

implode(分隔,arr)  把陣列值資料按指定字元連線起來

例如: 

 $arr=array('1','2','3','4');   

  $str=implode('-',$arr);
explode([分隔],arr)按指定規則對一個字串進行分割,返回值為陣列   別名join
array_merge()合併一個或多個陣列
array_combine(array keys, array values) 建立一個陣列,用一個陣列的值作為其鍵名,另一個陣列的值作為其值

例如:

  $a = array('green','red','yellow');
$b = array('avocado','apple','banana'
);
$c array_combine($a$b
);
 print_r($c
);
/* Outputs:
Array
(
    [green]  => avocado
    [red]    => apple
    [yellow] => banana
)
*/


array_push(arr,str) 將一個或多個單元壓入陣列的末尾(入棧)
array_unique(arr)移除陣列中重複的值
array_search() 在陣列中搜尋給定的值,如果成功則返回相應的鍵名
array_values()返回陣列中所有的值
array_keys() 返回陣列中所有的鍵名

count(arr) 計算陣列中的單元數目或物件中的屬性個數sizeof()
is_array(arr) 檢測變數是否是陣列
sort(arr) 對陣列排序
array_flip(arr) 交換陣列中的鍵和值

   注意 trans 中的值需要能夠作為合法的鍵名,例如需要是 integer 或者 string。如果值的型別不對將發出一個警告,並且有問題的鍵/值對將不會反轉

key(arr)返回陣列中當前元素的鍵名

current(arr)  返回當前指標所指向的值

next  返回下一個指標所指向的值

例如

$array = array (
'fruit1' => 'apple',
'fruit2' => 'orange',
'fruit3' => 'grape',
'fruit4' => 'apple',
'fruit5' => 'apple'
);

// this cycle echoes all associative array
// key where value equals "apple"
while ($fruit_name = current($array)) {
    if ($fruit_name == 'apple') {
        echo key($array).'<br>';
    }
    next($array);
}


reset(arr)陣列的內部指標指向第一個單元
array_chunk( array input, int size [, bool preserve_keys]))  將一個陣列分割成多個

 將一個陣列分割成多個陣列,其中每個陣列的單元數目由 size 決定。最後一個陣列的單元數目可能會少幾個。得到的陣列是一個多維陣列中的單元,其索引從零開始。

將可選引數 preserve_keys 設為 TRUE,可以使 PHP 保留輸入陣列中原來的鍵名。如果你指定了 FALSE,那每個結果陣列將用從零開始的新數字索引。預設值是 FALSE

 

字串【重點2】

trim(str) 消除字串兩邊的空格
rtrim()
addslashes在指定預定義字元前加\
strlen(str) 取字串長度
substr(str,start,length) 擷取指定字串中指定長度的字元
strstr(str,search)函式用於獲取一個指定字串在另一個字串中首次出現的位置到後者末尾的子字串。與   strchr相同
strpos(str,search) 查詢字串中某字元第一次出現的位置
str_replace(search,replace,str) 字串替換
ucfirst(str)  將字串第一個字元大寫
strtolower 變小寫
ucwords(str) 將字串每個字的第一個字母大寫
strcmp(str1,str2)函式用來對兩個字串進行比較
substr_count()函式檢索子串出現的次數

正則相關字串函式:
preg_match(pattern,subject,matches) 在subject字串中搜尋與 pattern 給出的正規表示式相匹配的內容,匹配後的結果存放在matches裡邊,matches[0]全部匹配內容,matches[1]第一個模式單元matches[1]第二模式單元,以此類推.
preg_match_all(pattern,subject,matches)全域性匹配,其餘的preg_match函式相似
preg_replace(pattern,replacement,str) 執行正規表示式的搜尋和替換,三種[string,string][array,string][array,array]
preg_split(pattern,str) 用正規表示式分割字串
preg_grep(pattern,array)用正規表示式匹配陣列的值,返回一個新的陣列資訊

 

時間【重點3】

PHP的日期時間函式date()

1,年-月-日
echo date('Y-m-j');
2007-02-6

echo date('y-n-j');
07-2-6

大寫Y表示年四位數字,而小寫y表示年的兩位數字;
小寫m表示月份的數字(帶前導),而小寫n則表示不帶前導的月份數字。

echo date('Y-M-j');
2007-Feb-6

echo date('Y-m-d');
2007-02-06

大寫M表示月份的3個縮寫字元,而小寫m則表示月份的數字(帶前導0);
沒有大寫的J,只有小寫j表示月份的日期,無前導o;若需要月份帶前導則使用小寫d。

echo date('Y-M-j');
2007-Feb-6

echo date('Y-F-jS');
2007-February-6th

大寫M表示月份的3個縮寫字元,而大寫F表示月份的英文全寫。(沒有小寫f)
大寫S表示日期的字尾,比如“st”、“nd”、“rd”和“th”,具體看日期數字為何。

小結:
表示年可以用大寫的Y和小寫y;
表示月可以用大寫F、大寫M、小寫m和小寫n(分別表示字元和數字的兩種方式);
表示日可以用小寫d和小寫j,大寫S表示日期的字尾。


2,時:分:秒

預設情況下,PHP解釋顯示的時間為“格林威治標準時間”,與我們本地的時間相差8個小時。

echo date('g:i:s a');
5:56:57 am

echo date('h:i:s A');
05:56:57 AM

小寫g表示12小時制,無前導0,而小寫h則表示有前導0的12小時制。
當使用12小時制時需要表明上下午,小寫a表示小寫的“am”和“pm”,大寫A表示大寫的“AM”和“PM”。

echo date('G:i:s');
14:02:26

大寫G表示24小時制的小時數,但是不帶前導的;使用大寫的H表示帶前導的24小時制小時數

小結:
字母g表示小時不帶前導,字母h表示小時帶前導;
小寫g、h表示12小時制,大寫G、H表示24小時制。

3,閏年、星期、天

echo date('L');
今年是否閏年:0

echo date('l');
今天是:Tuesday

echo date('D');
今天是:Tue

大寫L表示判斷今年是否閏年,布林值,為真返回1,否則為0;
小寫l表示當天是星期幾的英文全寫(Tuesday);
而使用大寫D表示星期幾的3個字元縮寫(Tue)。

echo date('w');
今天星期:2

echo date('W');
本週是全年中的第 06 周

小寫w表示星期幾,數字形式表示
大寫W表示一年中的星期數

echo date('t');
本月是 28 天

echo date('z');
今天是今年的第 36 天

小寫t表示當前月份又多少天
小寫z表示今天是本年中第幾天

4,其他

echo date('T');
UTC
大寫T表示伺服器的時間區域設定

echo date('I');
0
大寫I表示判斷當前是否為夏令時,為真返回1,否則為0

echo date('U');
1170769424
大寫U表示從1970年1月1日到現在的總秒數,就是Unix時間紀元的UNIX時間戳。

echo date('c');
2007-02-06T14:24:43+00:00
小寫c表示ISO8601日期,日期格式為YYYY-MM-DD,用字母T來間隔日期和時間,時間格式為HH:MM:SS,時區使用格林威治標準時間(GMT)的偏差來表示。

echo date('r');
Tue, 06 Feb 2007 14:25:52 +0000
小寫r表示RFC822日期。


小小的date()函式就顯示出了PHP的強大功能和迷人魅力,再比較下ASP,呵呵。
checkdate($month,$date,$year)

如果應用的值構成一個有效日期,則該函式返回為真。例如,對於錯誤日期2005年2月31日,此函式返回為假。

在日期用於計算或儲存在資料庫中之前,可用此函式檢查日期並使日期生效。

 

<?php
// returns false
echo checkdate(2,30,2005) ? "valid" : "invalid";
// returns true
echo checkdate(4,6,2010) ? "valid" : "invalid";
?>

 


getdate($ts)

在沒有自變數的情況下,該函式以結合陣列的方式返回當前日期與時間。陣列中的每個元素代表日期/時間值中的一個特定組成部分。可向函式提交可選的時間標籤自變數,以獲得與時間標籤對應的日期/時間值。

應用此函式來獲得一系列離散的,容易分離的日期/時間值。

 

<?php
// get date as associative array
$arr = getdate();
echo "Date is " . $arr['mday'] . " " . $arr['weekday'] . " " . $arr['year'];
echo "Time is " . $arr['hours'] . ":" . $arr['minutes'];
?>

 


mktime($hour, $minute, $second, $month, $day, $year)

此函式的作用與getdate()的作用相反:它由一系列的日期與時間值生成一個UNIX時間標籤(GMT時間1970年1月1日到現在消逝的秒數)。不用自變數時,它生成當前時間的UNIX時間標籤。

用此函式獲得即時時間的UNIX時間標籤。這種時間標籤通常用於許多資料庫與程式語言中。

 

<?php
// returns timestamp for 13:15:23 7-Jun-2006
echo mktime(13,15,23,6,7,2006);
?>

 


date($format, $ts)

此函式將UNIX時間標籤格式化成一個可人為閱讀的日期字串。它是PHP日期/時間API中功能最為強大的函式,可用在一系列的修正值中,將整數時間標籤轉變為所需的字串格式。

為顯示格式化時間或日期時,應用此函式。

 

<?php
// format current date
// returns "13-Sep-2005 01:16 PM"
echo date("d-M-Y h:i A", mktime());
?>

 


strtotime($str)

此函式將可人為閱讀的英文日期/時間字串轉換成UNIX時間標籤。

應用此函式將非標準化的日期/時間字串轉換成標準、相容的UNIX時間標籤。

 

<?php
// returns 13-Sep-05
echo date("d-M-y", strtotime("today"));
// returns 14-Sep-05
echo date("d-M-y", strtotime("tomorrow"));
// returns 16-Sep-05
echo date("d-M-y", strtotime("today +3 days"));
?>

 


strftime($format,$ts)

如前面的setlocale()函式定義的那樣,此函式將UNIX時間標籤格式化成適用於當前環境的日期字串。

應用此函式建立與當前環境相容的日期字串。

 

<?php
// set locale to France (on Windows)
setlocale(LC_TIME, "fra_fra");

// format month/day names
// as per locale setting
// returns "septembre" and "mardi"

echo strftime("Month: %B ");
echo strftime("Day: %A ");
?>

 


microtime()

如前面的setlocale()函式定義的那樣,此函式將UNIX時間標籤格式化成適用於當前環境的日期字串。

應用此函式建立與當前環境相容的日期字串。

 

<?php
// get starting value
$start = microtime();

// run some code
for ($x=0; $x<1000; $x++) {
$null = $x * $x;
}

// get ending value
$end = microtime();

// calculate time taken for code execution
echo "Elapsed time: " . ($end - $start) ." sec";
?>

 


gmmktime($hour, $minute, $second, $month, $day, $year)

此函式由一系列用GMT時間表示的日期與時間值生成一個UNIX時間標籤。不用自變數時,它生成一個當前GMT即時時間的UNIX時間標籤。

用此函式來獲得GMT即時時間的UNIX時間標籤。

 

<?php
// returns timestamp for 12:25:23 9-Jul-2006
echo gmmktime(12,25,23,7,9,2006);
?>

 


gmdate($format, $ts)

此函式將UNIX時間標籤格式化成可人為閱讀的日期字串。此日期字串以GMT(非當地時間)表示。

用GMT表示時間標籤時應用此函式。

 

<?php
// format current date into GMT
// returns "13-Sep-2005 08:32 AM"
echo gmdate("d-M-Y h:i A", mktime());
?>

 


date_default_timezone_set($tz)、date_default_timezone_get()

此函式此後所有的日期/時間函式呼叫設定並恢復預設的時區。

注:此函式僅在PHP 5.1+中有效。

此函式是一個方便的捷徑,可為以後的時間操作設定時區。


<?php
// set timezone to UTC
date_default_timezone_set('UTC');
?>


<?php
//今天
$today = date("Y-m-d");
//昨天
$yesterday = date("Y-m-d", strtotime(date("Y-m-d"))-86400);
//上週
$lastweek_start = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),date("d")-date("w")+1-7,date("Y")));
$lastweek_end = date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date("d")-date("w")+7-7,date("Y")));
//本週
$thisweek_start = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),date("d")-date("w")+1,date("Y"))); 
$thisweek_end = date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date("d")-date("w")+7,date("Y"))); 
//上月
$lastmonth_start = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m")-1,1,date("Y"))); 
$lastmonth_end = date("Y-m-d H:i:s",mktime(23,59,59,date("m") ,0,date("Y"))); 
//本月
$thismonth_start = date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),1,date("Y"))); 
$thismonth_end = date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date("t"),date("Y"))); 
//本季度未最後一月天數 
$getMonthDays = date("t",mktime(0, 0 , 0,date('n')+(date('n')-1)%3,1,date("Y")));
//本季度/
$thisquarter_start = date('Y-m-d H:i:s', mktime(0, 0, 0,date('n')-(date('n')-1)%3,1,date('Y'))); 
$thisquarter_end = date('Y-m-d H:i:s', mktime(23,59,59,date('n')+(date('n')-1)%3,$getMonthDays,date('Y')));

檔案操作【重點4】

file_exists(filename) 檔案或目錄是否存在
filesize(filename) 取得檔案大小
pathinfo(filename) 返回目錄名、基本名和副檔名的關聯陣列

$path_parts pathinfo("/www/htdocs/index.html");

echo 
$path_parts["dirname"] . "\n"
;
echo 
$path_parts["basename"] . "\n"
;
echo 
$path_parts["extension"] . "\n"
;

/www/htdocs
index.html
html
mkdir(dirname) 建立目錄
rmdir(dirname) 刪除空目錄
fopen(filename,模式) 開啟檔案
fclose(fp) 關閉檔案
fwrite(fp,str,length) 寫入檔案
file_put_contents(filename,content) 把內容存成檔案
file_get_contents(filename) 從檔案讀出內容
fread(fp,length) 讀取檔案
fgets() 從檔案指標中讀取一行
fgetc() 從檔案指標中讀取字元
file()把整個檔案讀入一個陣列中,陣列中的每個單元都是檔案中相應的一行
readfile() 讀入一個檔案並寫入到輸出緩衝
copy(filename1,filename2) 複製檔案
unlink(filename) 刪除檔案
rename(filename1,filename2) 重新命名檔案或目錄
$text = iconv('gbk','utf-8','高志偉');///將gbk編碼轉換為utf-8

相關文章