PHP程式字串處理函式

2021-05-25 03:16:05 字數 979 閱讀 1597

<?

//------------------------

// php內建字串函式實現

//------------------------

//字串長度

function strlen ($str)

else

}return $count;

}//擷取子串

function substr($str, $start, $length=null)

}if ($length > 0)

}if ( $length < 0)

}return $substr;

}//字串翻轉

function strrev($str)

return $rev_str;

}//字串比較

function strcmp($s1, $s2)

for ($j=$i; $j 128) return false;

for( $i=0; $i31 && $c <107) $c += 20 ;

if ($c>106 && $c <127) $c -= 75 ;

$word = chr($c );

$s .= $word;

} return $s; 

}//簡單解碼函式(與php_encode函式對應)

function php_decode($str)

return $s; 

}//簡單加密函式(與php_decrypt函式對應)

function php_encrypt($str)

{$encrypt_key = 'abcdefghijklmnopqrstuvwxyz1234567890';

$decrypt_key = 'ngzqtcobmuhelkpdawxfyivrsj2468021359';

if ( strlen($str) == 0) return false;

for ($i=0; $i

php字串處理函式

addslashes 字串加入斜線。bin2hex 二進位轉成十六進製。chop 去除連續空白。chr 返回序數值的字元。chunk split 將字串分成小段。convert cyr string 轉換古斯拉夫字串成其它字串。crypt 將字串用 des 編碼加密。echo 輸出字串。explod...

php字串處理函式

echo 輸出乙個或多個字串 print 輸出乙個字串 printf 輸出格式化字串 trim 去除字串 首尾 空白等特殊符號或指定字串行 ltrim 去除字串 首 空白等特殊符號或指定字串行 rtrim 去除字串 尾 空白等特殊符號或指定字串行 chop 同 rtrim implode 使用字元將...

php 字串處理函式

字串處理函式 字串處理函式 parse url 解析url,返回其組成部分 urlencode url編碼 urldecode 解碼 已編碼的內容 htmlentities 將字串轉化為html實體 1引數 操作內容 2 轉換規則 ent compat 只轉換雙引號 ent quotes 轉換單雙引...