1. 程式人生 > >超實用的php代碼片段

超實用的php代碼片段

substr time accept col 移除 ets 嵌入 amp bstr

超級有用的PHP代碼片段。當你在開發網站、應用或者博客時,利用這些代碼能為你節省大量的時間。
一、查看郵件是否已被閱讀
當你在發送郵件時,你或許很想知道該郵件是否被對方已閱讀。這裏有段非常有趣的代碼片段能夠顯示對方IP地址記錄閱讀的實際日期和時間。
[php] view plain copy print?技術分享技術分享
  1. <?
  2. error_reporting(0);
  3. Header("Content-Type: image/jpeg");
  4. //Get IP if (!empty($_SERVER[‘HTTP_CLIENT_IP‘]))
  5. {
  6. $ip=$_SERVER[‘HTTP_CLIENT_IP‘];
  7. }
  8. elseif (!empty($_SERVER[‘HTTP_X_FORWARDED_FOR‘]))
  9. {
  10. $ip=$_SERVER[‘HTTP_X_FORWARDED_FOR‘];
  11. }
  12. else
  13. {
  14. $ip=$_SERVER[‘REMOTE_ADDR‘];
  15. }
  16. //Time $actual_time = time();
  17. $actual_day = date(‘Y.m.d‘, $actual_time);
  18. $actual_day_chart = date(‘d/m/y‘, $actual_time);
  19. $actual_hour = date(‘H:i:s‘, $actual_time);
  20. //GET Browser $browser = $_SERVER[‘HTTP_USER_AGENT‘];
  21. //LOG $myFile = "log.txt";
  22. $fh = fopen($myFile, ‘a+‘);
  23. $stringData = $actual_day . ‘ ‘ . $actual_hour . ‘ ‘ . $ip . ‘ ‘ . $browser . ‘ ‘ . "\r\n";
  24. fwrite($fh, $stringData);
  25. fclose($fh);
  26. //Generate Image (Es. dimesion is 1x1) $newimage = ImageCreate(1,1);
  27. $grigio = ImageColorAllocate($newimage,255,255,255);
  28. ImageJPEG($newimage);
  29. ImageDestroy($newimage);
  30. ?>


復制代碼
二、從網頁中提取關鍵字
一段偉大的代碼片段能夠輕松的從網頁中提取關鍵字。
[php] view plain copy print?技術分享技術分享
  1. $meta = get_meta_tags(‘http://www.emoticode.net/‘);
  2. $keywords = $meta[‘keywords‘];
  3. // Split keywords $keywords = explode(‘,‘, $keywords );
  4. // Trim them $keywords = array_map( ‘trim‘, $keywords );
  5. // Remove empty values $keywords = array_filter( $keywords );
  6. print_r( $keywords );


復制代碼
三、查找頁面上的所有鏈接
使用DOM,你可以輕松從任何頁面上抓取鏈接,代碼示例如下:
[php] view plain copy print?技術分享技術分享
  1. $html = file_get_contents(‘http://www.example.com‘);
  2. $dom = new DOMDocument();
  3. @$dom->loadHTML($html);
  4. // grab all the on the page $xpath = new DOMXPath($dom);
  5. $hrefs = $xpath->evaluate("/html/body//a");
  6. for ($i = 0; $i < $hrefs->length; $i++) {
  7. $href = $hrefs->item($i);
  8. $url = $href->getAttribute(‘href‘);
  9. echo $url.‘<br />‘;
  10. }


復制代碼
四、自動轉換URL,跳轉至超鏈接
在WordPress中,如果你想自動轉換URL,跳轉至超鏈接頁面,你可以利用內置的函數make_clickable()執行此操作。如果你想基於WordPress之外操作該程序,那麽你可以參考wp-includes/formatting.php源代碼。
[php] view plain copy print?技術分享技術分享
  1. function _make_url_clickable_cb($matches) {
  2. $ret = ‘‘;
  3. $url = $matches[2];
  4. if ( empty($url) )
  5. return $matches[0];
  6. // removed trailing [.,;:] from URL if ( in_array(substr($url, -1), array(‘.‘, ‘,‘, ‘;‘, ‘:‘)) === true ) {
  7. $ret = substr($url, -1);
  8. $url = substr($url, 0, strlen($url)-1);
  9. }
  10. return $matches[1] . "<a href=\"$url\" rel=\"nofollow\">$url</a>" . $ret;
  11. }
  12. function _make_web_ftp_clickable_cb($matches) {
  13. $ret = ‘‘;
  14. $dest = $matches[2];
  15. $dest = ‘http://‘ . $dest;
  16. if ( empty($dest) )
  17. return $matches[0];
  18. // removed trailing [,;:] from URL if ( in_array(substr($dest, -1), array(‘.‘, ‘,‘, ‘;‘, ‘:‘)) === true ) {
  19. $ret = substr($dest, -1);
  20. $dest = substr($dest, 0, strlen($dest)-1);
  21. }
  22. return $matches[1] . "<a href=\"$dest\" rel=\"nofollow\">$dest</a>" . $ret;
  23. }
  24. function _make_email_clickable_cb($matches) {
  25. $email = $matches[2] . [email protected] . $matches[3];
  26. return $matches[1] . "<a href=\"mailto:$email\">$email</a>";
  27. }
  28. function make_clickable($ret) {
  29. $ret = ‘ ‘ . $ret;
  30. // in testing, using arrays here was found to be faster $ret = preg_replace_callback(‘#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@ +]*)#is‘, ‘_make_url_clickable_cb‘, $ret);
  31. $ret = preg_replace_callback(‘#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@ +]*)#is‘, ‘_make_web_ftp_clickable_cb‘, $ret);
  32. $ret = preg_replace_callback(‘#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i‘, ‘_make_email_clickable_cb‘, $ret);
  33. // this one is not in an array because we need it to run last, for cleanup of accidental links within links $ret = preg_replace("#(<a( [^>]+?>|>))<a [^>]+?>([^>]+?)</a></a>#i", "$1$3</a>", $ret);
  34. $ret = trim($ret);
  35. return $ret;
  36. }


復制代碼
五、創建數據URL
數據URL可以直接嵌入到HTML/CSS/JS中,以節省大量的 HTTP請求。 下面的這段代碼可利用$file輕松創建數據URL。
[php] view plain copy print?技術分享技術分享
  1. function data_uri($file, $mime) {
  2. $contents=file_get_contents($file);
  3. $base64=base64_encode($contents);
  4. echo "data:$mime;base64,$base64";
  5. }


復制代碼
六、從服務器上下載&保存一個遠程圖片
[php] view plain copy print?技術分享技術分享
  1. $image = file_get_contents(‘http://www.url.com/image.jpg‘);
  2. file_put_contents(‘/images/image.jpg‘, $image);


復制代碼
七、移除Remove Microsoft Word HTML Tag
當你使用Microsoft Word會創建許多Tag,比如font,span,style,class等。這些標簽對於Word本身而言是非常有用的,但是當你從Word粘貼至網頁時,你會發現很多無用的Tag。因此,下面的這段代碼可幫助你刪除所有無用的Word HTML Tag。
[php] view plain copy print?技術分享技術分享
  1. function cleanHTML($html) {
  2. /// <summary> /// Removes all FONT and SPAN tags, and all Class and Style attributes. /// Designed to get rid of non-standard Microsoft Word HTML tags. /// </summary> // start by completely removing all unwanted tags
  3. $html = ereg_replace("<(/)?(font|span|del|ins)[^>]*>","",$html);
  4. // then run another pass over the html (twice), removing unwanted attributes
  5. $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|‘[^‘]*‘|[^>]+)([^>]*)>","<\1>",$html);
  6. $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|‘[^‘]*‘|[^>]+)([^>]*)>","<\1>",$html);
  7. return $html
  8. }


復制代碼
八、檢測瀏覽器語言
如果你的網站上有多種語言,那麽可以使用這段代碼作為默認的語言來檢測瀏覽器語言。該段代碼將返回瀏覽器客戶端使用的初始語言。
[php] view plain copy print?技術分享技術分享
  1. function get_client_language($availableLanguages, $default=‘en‘){
  2. if (isset($_SERVER[‘HTTP_ACCEPT_LANGUAGE‘])) {
  3. $langs=explode(‘,‘,$_SERVER[‘HTTP_ACCEPT_LANGUAGE‘]);
  4. foreach ($langs as $value){
  5. $choice=substr($value,0,2);
  6. if(in_array($choice, $availableLanguages)){
  7. return $choice;
  8. }
  9. }
  10. }
  11. return $default;
  12. }

九、判斷是否微信訪問,是否手機訪問

/*-*-
 * 判斷是否手機訪問
 */
function is_mobile(){
    if(preg_match(‘/(iphone|ipad|ipod|android)/i‘, strtolower($_SERVER[‘HTTP_USER_AGENT‘]))){
        return true;
    }else{
        return false;
    }
}
/*-*-
 * 判斷是否微信訪問
 */
function is_weixin(){
    if(strpos($_SERVER[‘HTTP_USER_AGENT‘],‘MicroMessenger‘) !== false){
        return true;
    }else{
        return false;
    }
}

超實用的php代碼片段