PHP 常用函式大全

2021-05-22 22:06:10 字數 1977 閱讀 1948

//批量替換多層目錄中檔案內容

function listfiles($dir)

//閱讀目錄

while(false!=($file=readdir($handle)))

else}}

}else

}//獲得當前的指令碼**

function get_php_url()else

return $nowurl;

}//把全形數字轉為半形數字

function getalabnum($fnum)","",$fnum);

if($fnum=="") $fnum=0;

return $fnum;

}//去除html標記

function text2html($txt)/isu","

/r/n",$txt);

return $txt;

}//清除html標記

function clearhtml($str)

//相對路徑轉化成絕對路徑

function relative_to_absolute($content, $feed_url)

if (isset($protocol[0])) else

return $new_content;

} //取得所有鏈結

function get_all_url($code)

//獲取指定標記中的內容

function get_tag_data($str, $start, $end)

$str = explode($start, $str);

$str = explode($end, $str[1]);

return $str[0];

}//html**的每行轉為csv格式陣列

function get_tr_array($table) ",$table);

//去掉 html 標記

$table = preg_replace("'<[///!]*?[^<>]*?>'si","",$table);

//去掉空白字元

$table = preg_replace("'([/r/n])[/s]+'","",$table);

$table = str_replace(" ","",$table);

$table = str_replace(" ","",$table);

$table = explode(",",$table);

array_pop($table);

return $table;

}//將html**的每行每列轉為陣列,採集**資料

function get_td_array($table) ",$table);

$table = str_replace("","",$table);

//去掉 html 標記

$table = preg_replace("'<[///!]*?[^<>]*?>'si","",$table);

//去掉空白字元

$table = preg_replace("'([/r/n])[/s]+'","",$table);

$table = str_replace(" ","",$table);

$table = str_replace(" ","",$table);

$table = explode('', $table);

array_pop($table);

foreach ($table as $key=>$tr) ', $tr);

array_pop($td);

$td_array = $td;

}return $td_array;

}//返回字串中的所有單詞 $distinct=true 去除重複

function split_en_str($str,$distinct=true)

sort($match[1]);

return $match[1];

}

PHP常用函式大全

字串函式 strlen 獲取字串長度,位元組長度 substr count 某字串出現的次數 substr 字串擷取,獲取字串 按照位元組進行擷取 mb strlenmb substr strchr 與substr相似,從指定位置擷取一直到最後 strrchr 獲取檔案字尾名 與strchr一樣,只...

PHP函式大全 5

xml parser functions xml parser create int xml parser create string encoding 建立乙個xml解析器。xml set element handler boolean xml set element handler int pa...

PHP檔案函式大全

basename 返回路徑中的檔名部分 chgrp 改變檔案所屬的組 chmod 改變檔案模式 chown 改變檔案的所有者 clearstatcache 清除檔案狀態快取 copy 拷貝檔案 delete 參見 unlink 或 unset dirname 返回路徑中的目錄部分 disk free...