超級有用的9個PHP程式碼片段
本文由碼農網 – 小峰原創翻譯,轉載請看清文末的轉載要求,歡迎參與我們的付費投稿計劃!
在開發網站、app或部落格時,程式碼片段可以真正地為你節省時間。今天,我們就來分享一下我收集的一些超級有用的PHP程式碼片段。一起來看一看吧!
1.建立資料URI
資料URI在嵌入影像到HTML / CSS / JS中以節省HTTP請求時非常有用,並且可以減少網站的載入時間。下面的函式可以建立基於$file的資料URI。
function data_uri($file, $mime) { $contents=file_get_contents($file); $base64=base64_encode($contents); echo "data:$mime;base64,$base64"; }
2.合併JavaScript和CSS檔案
另一個可以儘量減少HTTP請求和節省頁面載入時間的好建議是:合併你的CSS和JS檔案。雖然我更建議大家使用專用外掛(例如minify),但使用PHP來合併檔案也非常容易。我們來看一下:
function combine_my_files($array_files, $destination_dir, $dest_file_name){ if(!is_file($destination_dir . $dest_file_name)){ //continue only if file doesn't exist $content = ""; foreach ($array_files as $file){ //loop through array list $content .= file_get_contents($file); //read each file } //You can use some sort of minifier here //minify_my_js($content); $new_file = fopen($destination_dir . $dest_file_name, "w" ); //open file for writing fwrite($new_file , $content); //write to destination fclose($new_file); return '<script src="'. $destination_dir . $dest_file_name.'"></script>'; //output combined file }else{ //use stored file return '<script src="'. $destination_dir . $dest_file_name.'"></script>'; //output combine file } }
並且,用法是這樣的:
$files = array( 'http://example/files/sample_js_file_1.js', 'http://example/files/sample_js_file_2.js', 'http://example/files/beautyquote_functions.js', 'http://example/files/crop.js', 'http://example/files/jquery.autosize.min.js', ); echo combine_my_files($files, 'minified_files/', md5("my_mini_file").".js");
3.檢視你的電子郵件是否已讀
當傳送電子郵件時,你會希望知道你的郵件是否已讀。這裡有一個非常有趣的程式碼片段,它可以記錄閱讀你郵件的IP地址,以及實際的日期和時間。
<? error_reporting(0); Header("Content-Type: image/jpeg"); //Get IP if (!empty($_SERVER['HTTP_CLIENT_IP'])) { $ip=$_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ip=$_SERVER['REMOTE_ADDR']; } //Time $actual_time = time(); $actual_day = date('Y.m.d', $actual_time); $actual_day_chart = date('d/m/y', $actual_time); $actual_hour = date('H:i:s', $actual_time); //GET Browser $browser = $_SERVER['HTTP_USER_AGENT']; //LOG $myFile = "log.txt"; $fh = fopen($myFile, 'a+'); $stringData = $actual_day . ' ' . $actual_hour . ' ' . $ip . ' ' . $browser . ' ' . "\r\n"; fwrite($fh, $stringData); fclose($fh); //Generate Image (Es. dimesion is 1x1) $newimage = ImageCreate(1,1); $grigio = ImageColorAllocate($newimage,255,255,255); ImageJPEG($newimage); ImageDestroy($newimage); ?>
4.從網頁提取關鍵詞
正如這小標題所說的那樣:這個程式碼片段能讓你輕易地從網頁中提取元關鍵詞。
$meta = get_meta_tags('http://www.emoticode.net/'); $keywords = $meta['keywords']; // Split keywords $keywords = explode(',', $keywords ); // Trim them $keywords = array_map( 'trim', $keywords ); // Remove empty values $keywords = array_filter( $keywords ); print_r( $keywords );
5.查詢頁面上的所有連結
使用DOM,你可以輕鬆地抓取來網頁上的所有連結。這裡有一個工作示例:
$html = file_get_contents('http://www.example.com'); $dom = new DOMDocument(); @$dom->loadHTML($html); // grab all the on the page $xpath = new DOMXPath($dom); $hrefs = $xpath->evaluate("/html/body//a"); for ($i = 0; $i < $hrefs->length; $i++) { $href = $hrefs->item($i); $url = $href->getAttribute('href'); echo $url.'<br />'; }
6.自動轉換URL為可點選的超連結
在WordPress中,如果你想在字串中自動轉換所有的URL成可點選的超連結,那麼使用內建函式make_clickable()可以讓你心想事成。如果你需要在WordPress之外這麼做,那麼你可以在wp-includes/formatting.php參考該函式的原始碼:
function _make_url_clickable_cb($matches) { $ret = ''; $url = $matches[2]; if ( empty($url) ) return $matches[0]; // removed trailing [.,;:] from URL if ( in_array(substr($url, -1), array('.', ',', ';', ':')) === true ) { $ret = substr($url, -1); $url = substr($url, 0, strlen($url)-1); } return $matches[1] . "<a href=\"$url\" rel=\"nofollow\">$url</a>" . $ret; } function _make_web_ftp_clickable_cb($matches) { $ret = ''; $dest = $matches[2]; $dest = 'http://' . $dest; if ( empty($dest) ) return $matches[0]; // removed trailing [,;:] from URL if ( in_array(substr($dest, -1), array('.', ',', ';', ':')) === true ) { $ret = substr($dest, -1); $dest = substr($dest, 0, strlen($dest)-1); } return $matches[1] . "<a href=\"$dest\" rel=\"nofollow\">$dest</a>" . $ret; } function _make_email_clickable_cb($matches) { $email = $matches[2] . '@' . $matches[3]; return $matches[1] . "<a href=\"mailto:$email\">$email</a>"; } function make_clickable($ret) { $ret = ' ' . $ret; // 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); $ret = preg_replace_callback('#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_web_ftp_clickable_cb', $ret); $ret = preg_replace_callback('#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret); // 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); $ret = trim($ret); return $ret; }
7.在你的伺服器上下載並儲存遠端影像
在遠端伺服器上下載一個影像,並將其儲存在自己的伺服器上,在建立網站時很有用,而且這也很容易做到。下面的這兩行程式碼就能為你辦到。
$image = file_get_contents('http://www.url.com/image.jpg'); file_put_contents('/images/image.jpg', $image); //Where to save the image
8.檢測瀏覽器語言
如果你的網站使用多種語言,那麼檢測瀏覽器語言,並將這種語言作為預設語言會很有用。下面的程式碼將返回客戶瀏覽器使用的語言。
function get_client_language($availableLanguages, $default='en'){ if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']); foreach ($langs as $value){ $choice=substr($value,0,2); if(in_array($choice, $availableLanguages)){ return $choice; } } } return $default; }
9.全文顯示Facebook粉絲的數量
如果你的網站或部落格有一個Facebook的頁面,那麼你可能想要顯示你有多少個粉絲。這個程式碼片段可以幫助你獲取Facebook粉絲的數量。不要忘記在第二行新增你的頁面ID。頁面ID可以在地址http://faceb
<?php $page_id = "302807633129400"; $xml = @simplexml_load_file("http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id=".$page_id."") or die ("a lot"); $fans = $xml->page->fan_count; echo $fans; ?>
譯文連結:http://www.codeceo.com/article/9-useful-php-code-snippets.html
英文原文:Super Useful PHP Snippets
翻譯作者:碼農網 – 小峰
[ 轉載必須在正文中標註並保留原文連結、譯文連結和譯者等資訊。]
相關文章
- 60個有用CSS程式碼片段CSS
- 10個超級有用、必須收藏的PHP程式碼樣例PHP
- 幾個超級實用的css程式碼片段CSS
- 60個有用CSS程式碼片段(二)CSS
- 為開發者準備的9個實用PHP程式碼片段PHP
- 30+有用的CSS程式碼片段CSS
- 開發者必備 超實用的PHP程式碼片段!PHP
- 開發者必備,超實用的PHP程式碼片段!PHP
- 直接拿來用 九個超實用的PHP程式碼片段(二)PHP
- 20個非常有用的Java程式片段Java
- 10個典型實用的PHP程式碼片段PHP
- 直接拿來用 10個PHP程式碼片段PHP
- PHP程式碼片段記錄PHP
- iOS 開發的9個超有用小技巧iOS
- 10個超級有用的Python工具!Python
- 超級有用的CSS編碼工具集CSS
- 10個超棒jQuery表單操作程式碼片段jQuery
- 超級有用的網站網站
- Golang, 以 9 個簡短程式碼片段,弄懂 defer 的使用特點Golang
- 非常實用的PHP程式碼片段推薦PHP
- 18個很棒的jQuery程式碼片段分享jQuery
- 12 個用得著的 jQuery 程式碼片段jQuery
- 30秒內便能學會的30個超實用Python程式碼片段Python
- 程式碼片段
- 12 個非常實用的 jQuery 程式碼片段jQuery
- oracle - 超有用的小指令碼Oracle指令碼
- 九個PHP很有用的功能PHP
- ? 分享8點超級有用的Python程式設計建議Python程式設計
- 收集的jQuery程式碼片段jQuery
- RN程式碼片段
- 表格程式碼片段
- 常用程式碼片段
- 高效Web開發的10個jQuery程式碼片段WebjQuery
- 10個簡單實用的 jQuery 程式碼片段jQuery
- 建立漂亮的 CSS 按鈕的 10 個程式碼片段CSS
- 24個有用的PHP類庫分享PHP
- 20個很有用的PHP類庫PHP
- 10個開發中實用的 jQuery 程式碼片段jQuery