回php_cookbook

##1.1-1字串剖析 strpos()

<程式碼>

$email = 'sterling@php.net';
$user_name = substr ($email,0,strpos($email,'@'));
echo $user_name;

<執行結果:>

sterling

<筆記區>

PHP將字串視為基本資料型態,而不是由位元組成的陣列,所以你可以用一個函式,像是 substr()、substr_replace()來存取及修改字串中個別字元或某一部分。
substr()的第一個參數式你要處理字串,第二個參數指定所需存取的字串個別字元起始索引位置。
strpos()函式會得到你所指定字元首次在字串出現的位置。


##1.1-2-1字串剖析 unpack()

<程式碼>

$str = 'Gumbi and PDOC are smelly';
$names = unpack('A5name1/x5/A4name2', $str);
echo $names['name1'];
echo $names['name2'];

<執行結果:>

Gumbi
PDOC

<筆記區>

如果你想讀取固定長度的紀錄,建議你使用PHP的unpack()函(這是仿造Pear的 unpack(),此函式不但執行速度快,也節省程式設計時間。


##1.1-2-2字串剖析 unpack()

<程式碼>

$str2 = 'A box without hinges, key, or lid, Yet golden treasure inside is hid';
$results = unpack ('A1pronoun/x5/A7adjective/X11/A3noun', $str2);
foreach($results as $key => $value)
{
echo '{$key}: =>{$value} ';
}

<執行結果:>

pronoun: =>A
adjective: =>without
noun: =>box


<筆記區>

字串為=A box without hinges, key, or lid, Yet golden treasure inside is hid
$results = unpack ('A1pronoun/x5/A7adjective/X11/A3noun', $str2); 說明:字串以/隔開 。
A1pronoun 代表 key是pronoun、value是值;參數為A1,表示從頭取1位元,所以是A x5/A7表示跳5字元取7個,key值為adjective。
$results['adjective']=without
X11/A3noun:X為往回跳11個字元,取3個字元。
$results['noun']=box


##1.3交換變數 list()

<程式碼>

$items = array
( 'Linux',
'Apache',
'PHP',
'A SQL Server',
'Talented Administrator');
print 'The essentials for operating your own webserver: ';

reset ($items);
while (list (, $item) = each ($items)){
print '$item ';
}

<執行結果:>

The essentials for operating your own webserver: Linux Apache PHP A SQL Server Talented Administrator

<筆記區>

使用list()和array()來交換變數:
list ($var1, $var2) = array($var2,$var1);
請注意這個例子的語法 list(, $item),逗號是表示我們所處理的陣列中還有另一個參數(該項目數字索引), 請記住,處理以數字定索引的陣列時,each()會傳回項目索引以及項目本身。


##1.4將ASCII碼轉換為字元 chr() ord()

<程式碼>

$letter = chr(67);
$ascii_code = ord ($letter);
$letter = sprintf ('%c',$ascii_code);
echo '{$letter}';

<執行結果:>

C

<筆記區>

你想把ASCII碼轉成英文或反向操作
使用chr(),ord()或sprintf()來互相轉換。


##1.5劃分字元

<程式碼>

function str_ord ($str){
for ($i = 0;
$i < strlen ($str);
$i++){
$ascii_values[$i] = ord ($str[$i]);
}
return $ascii_values;
}

$str = "Hello World";
$ascii_values = str_ord ($str);
print "The third letter of $str, a-> $str[2],";
print "has an ASCII value of $ascii_values[2].";

$ascii_values = unpack ("C*char", $str);
//key char
$ascii_values2 = array_values (unpack("C*char", $str));
//轉換key 0,1...
foreach($ascii_values as $key => $value){
echo "{$key}: =>{$value} ";
}
foreach($ascii_values2 as $key => $ alue){
echo "{$key}: =>{$value} ";
}

<執行結果:>

The third letter of Hello World, a-> l,has an ASCII value of 108.
char1: =>72
char2: =>101
char3: =>108
char4: =>108
char5: =>111
char6: =>32
char7: =>87
char8: =>111
char9: =>114
char10: =>108
char11: =>100
0: =>72
1: =>101
2: =>108
3: =>108
4: =>111
5: =>32
6: =>87
7: =>111
8: =>114
9: =>108
10: =>100


<筆記區>

以一次一個字元方式來處理字串。基本上處理字串有兩種方法,第一種是使用for()迴圈,然後用[]運算子來取 得字串內的位置。
第二種則牽涉到常規表示式的preg_split()。
例如:preg_split("//",$str),"//"代表,它將字串分割成一個字元陣列。
unpack()函式,取字串內所有ASCII值,以C語言格式的指定語法,傳回一個associative array,第一個字元 索引是"char",第二個為"char2"等等。
如果你想要把資料存在一個以數字為索引的陣列中,那麼請用array_values()。
code => $ascii_values = array_values(unpack("C*char", $char));


##1.6反轉部分字串 array_reverse是反轉單字字串 strrev是反轉字元

<程式碼>

function word_reverse ($str){
return implode ("",array_reverse (preg_split ("/\s+/",$str)));
}
$str = "A ross by any other name ";
print $str;

$str_reversed = word_reverse($str);
print $str_reversed;

$chart_reverse = strrev ($str);
print $chart_reverse;

<執行結果:>

A ross by any other name
nameotheranybyrossA
eman rehto yna yb ssor A

<筆記區>

要反轉所有單字,可以用preg_split()搭配array_reverse()函式。
要反轉字串所有的字元,你可以用PHP的strrev()函式。
$str = "A rose by any other name ";
$chars_reversed = strrev($str);
print $chars_reversed;
//輸出:eman rehto yna yb esor A


##1.7轉換字串大小寫

<程式碼>

setlocale (LC_ALL,"zh_TW.utf8", "zh_TW", "zh");
$str = "mary had a little lamb ";

$str = strtoupper($str);
echo $str;
$str = strtolower($str);
echo $str;
$str = ucfirst ($str);
echo $str;
$str = ucwords($str);
echo $str;
echo $code_tail;

//自動偵測locatet程式
$possible_locale_name_list = array(
'zh_TW.utf8', 'zh_TW', 'zh'
);
if (PHP_VERSION_ID >= 40300) {
$result = setlocale(LC_MESSAGES, $possible_locale_name_list);
}
else {
foreach ($possible_locale_name_list as $l) {
$result = setlocale(LC_MESSAGES, $l);
if ($result)
break;
}
}

if ( $result ) {
$current_locale = setlocale(LC_MESSAGES, 0);
echo "目前的區碼是: $current_locale ";
}
else {
echo "setlocale() 找不到符合的區碼 ";
}

<執行結果:>

MARY HAD A LITTLE LAMB
mary had a little lamb
Mary had a little lamb
Mary Had A Little Lamb


目前的區碼是: zh_TW.utf8

<筆記區>

使用stroupper(),strtolower(),ucfirst(),ucwords();
許多人會直覺地使用常規表示式搜尋與取代,以改變字串內字元的大小寫,不過你應該考慮上面的函式,因為它們 的速度比使用常規表示式快很多。
另外setlocate()函式是設定區碼,原理是偵測作業系統的區碼表決定,因此用參數zh_TW.utf8,zh_TW,zh, 讓PHP去自動設定。


##1.8 移除字串中的空白 chop 去除尾部空白 ltrim 去除開頭空白 trim 去除頭尾空白

<程式碼>

$str = "red apple " ;
$str = chop ($str);
echo $str."abc";
$str = " red apple " ;
$str = ltrim ($str);
echo "abc".$str."abc";
$str = "red apple " ;
$str = chop ($str);
echo $str."abc";
$str = " red apple " ;
$str = ltrim ($str);
echo "abc".$str."abc";

<執行結果:>

red appleabc
abcred apple abc


<筆記區>

使用chop(),rtrim()函式來移除字串尾部的空白。
你可以使用ltrim()移除字串開頭的空白。
若想同時移除頭尾空白,則使用trim()。


##1.11 解析URL

<程式碼>

$url = 'http://www.php.net/search.php?show=nource&';
$url .='pattern=parse_url&sourceurl=http%3A%2F%2Fwww.php.net%2F ';
$url_parts = parse_url ($url);
foreach ($url_parts as $key =>$value ){ echo "{$key} => {$value} ";
}
scheme => http
host => www.php.net
path => /search.php
query => show=nource&pattern=parse_url&sourceurl=http%3A%2F%2Fwww.php.net%2F

<筆記區>

使用parse_url()和parse_str()函式來分析URL


##1.14 對字串加密 支援md5()

<程式碼>

$data = "Hello World";
$hashed_data = md5 ($\data);
print "The md5 hash of $data is $hashed_data ";

$base63_data = base64_encode ($data);
print "The base64_encode hash of $data is $base63_data ";

$decode_data = base64_decode($base63_data);
print "The base64_decode hash of $base63_data is $decode_data ";
The md5 hash of Hello World is b10a8db164e0754105b7a99be72e3fe5
The base64_encode hash of Hello World is SGVsbG8gV29ybGQ=
The base64_decode hash of SGVsbG8gV29ybGQ= is Hello World

<筆記區>

本文所提供的函式參數都有問題,只有md5(),base64_decode(),base64_encode(),這三個函式可以用。