PHP常用處理靜態(tài)操作類_PHP教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
推薦:php使用post數(shù)組的鍵值創(chuàng)建同名變量并賦值的方法本文實例講述了php使用post數(shù)組的鍵值創(chuàng)建同名變量并賦值的方法。分享給大家供大家參考。具體如下: 這段代碼可以自動根據(jù)post數(shù)組的鍵值創(chuàng)建同名變量,這個功能使用非常方便,不用提前聲明變量 希望本文所述對大家的php程序設(shè)計有所幫助。
詳細一個PHP開發(fā)時常用處理的操作類 - 希望大家多多補充 - 完善這個操作類
- <?php
- /**
- * 常用靜態(tài)類,這里主要整理了一些PHP常常會用到的方法。
- *
- * @author ZCStrong - youkuiyuan
- */
- class C {
- /*
- * 私有處理隨機數(shù)的內(nèi)置參數(shù)
- * array 隨機數(shù)數(shù)組/param 隨機數(shù)長度
- * 返回一個隨機數(shù)
- */
- static private function Random($array , $param) {
- $randArray = $array;
- $randCount = count($randArray);
- $num = intval($param);
- $resultStr = "";
- for($i = 0 ; $i < $num ; $i++){
- $resultStr .= $randArray[rand(0, intval($randCount) - 1)];
- }
- return $resultStr;
- }
- //隨機數(shù)(數(shù)字類型)
- static public function Randnum($param = 8){
- $randArray = str_split("1234567890");
- $resultStr = C::Random($randArray,$param);
- return $resultStr;
- }
- //隨機數(shù)(混合類型) - 無0
- static public function RandStr($param = 8 , $capslock = FALSE){
- $randArray = str_split("abcdefghijklmnopqrstuvwxyz123456789ABCDEFGHIGKLMNOPQRSTUVWXYZ");
- $resultStr = C::Random($randArray,$param);
- if($capslock){
- return strtoupper($resultStr);
- }
- else {
- return $resultStr;
- }
- }
- //加密字符串
- static public function EnBaseCode($data, $key = "ZCStrong"){
- $key = md5($key);//對于預(yù)設(shè)的KEY,MD5
- $x = 0;
- $len = strlen($data);
- $l = strlen($key);
- for ($i = 0; $i < $len; $i++){
- if ($x == $l){
- $x = 0;
- }
- $char .= $key{$x};
- $x++;
- }
- for ($i = 0; $i < $len; $i++){
- $str .= chr(ord($data{$i}) + (ord($char{$i})) % 256);
- }
- return base64_encode($str);
- }
- //機密字符串
- static public function DeBaseCode($data, $key = "ZCStrong"){
- $key = md5($key);
- $x = 0;
- $data = base64_decode($data);
- $len = strlen($data);
- $l = strlen($key);
- for ($i = 0; $i < $len; $i++){
- if ($x == $l){
- $x = 0;
- }
- $char .= substr($key, $x, 1);
- $x++;
- }
- for ($i = 0; $i < $len; $i++){
- if (ord(substr($data, $i, 1)) < ord(substr($char, $i, 1))){
- $str .= chr((ord(substr($data, $i, 1)) + 256) - ord(substr($char, $i, 1)));
- }
- else{
- $str .= chr(ord(substr($data, $i, 1)) - ord(substr($char, $i, 1)));
- }
- }
- return $str;
- }
- //正則手機號 /^((1[3,5,8][0-9])|(14[5,7])|(17[0,6,7,8]))\d{8}$/
- static public function RegularPhone($string){
- $resultStr = preg_match("/^((1[3,5,8][0-9])|(14[5,7])|(17[0,6,7,8]))\d{8}$/",$string);
- if(intval($resultStr) == 1){
- return TRUE;
- }
- else{
- return FALSE;
- }
- }
- //正則郵箱
- static public function RegularEmail($string){
- $resultStr = preg_match("/^([0-9A-Za-z\\-_\\.]+)@([0-9a-z]+\\.[a-z]{2,3}(\\.[a-z]{2})?)$/i",$string);
- if(intval($resultStr) == 1){
- return TRUE;
- }
- else{
- return FALSE;
- }
- }
- //正則驗證身份證/(^([d]{15}|[d]{18}|[d]{17}x)$)/
- static public function RegularIdCard($string){
- $resultStr = preg_match("/(^([d]{15}|[d]{18}|[d]{17}x)$)/",$string);
- if(intval($resultStr) == 1){
- return TRUE;
- }
- else{
- return FALSE;
- }
- }
- //處理字符串信息
- static public function hStr($string){
- if(isset($string) && !emptyempty($string)){
- return addslashes(strip_tags($string));
- }
- else{
- return "";
- }
- }
- }
分享:php刪除指定目錄的方法本文實例講述了php刪除指定目錄的方法。分享給大家供大家參考。具體分析如下: 這段代碼可實現(xiàn)遞歸刪除子目錄的功能
相關(guān)PHP教程:
- php生成圓角圖片的方法
- php按單詞截取字符串的方法
- php生成zip文件類實例
- php生成圖片縮略圖的方法
- php獲取網(wǎng)頁里所有圖片并存入數(shù)組的方法
- 經(jīng)典PHP加密解密函數(shù)Authcode()修復(fù)版代碼
- php簡單實現(xiàn)快速排序的方法
- php獲取網(wǎng)頁上所有鏈接的方法
- php將HTML表格每行每列轉(zhuǎn)為數(shù)組實現(xiàn)采集表格數(shù)據(jù)的方法
- php使用post數(shù)組的鍵值創(chuàng)建同名變量并賦值的方法
- php刪除指定目錄的方法
- WordPress博客程序常見錯誤的解決方法
- 相關(guān)鏈接:
- 教程說明:
PHP教程-PHP常用處理靜態(tài)操作類
。