PHP有著眾多的內置函數,其中大多數函數都被開發者廣發使用。但也有一些同樣有用卻被遺忘在角落,本文將介紹7個鮮為人知功能卻非常酷的函數。
1.highlight_string()
當需要在網頁中展示PHP代碼時,highlight_string()函數就顯得非常有用。該函數通過PHP內置定義的顏色,返回函數中代碼的高亮顯示版本。
Usage:
<?php highlight_string('<?php phpinfo(); ?>'); ?>2.str_word_count()
Usage:
?php $str = "How many words do I have?"; echo str_word_count($str); //Outputs 5 ?>3.levenshtein()
Usage:
<?php $str1 = "carrot"; $str2 = "carrrott"; echo levenshtein($str1, $str2); //Outputs 2 ?>4.get_defined_vars()
Usage:
print_r(get_defined_vars());
Usage:
<?php $command = './configure '.$_POST['configure_options']; $escaped_command = escapeshellcmd($command); system($escaped_command); ?>6.checkdate()
Usage:
<?php var_dump(checkdate(12, 31, 2000)); var_dump(checkdate(2, 29, 2001)); //Output //bool(true) //bool(false) ?>7.php_strip_whitespace()
Usage:
<?php // PHP comment here /* * Another PHP comment */ echo php_strip_whitespace(__FILE__); // Newlines are considered whitespace, and are removed too: do_nothing(); ?>
The output:
<?php echo php_strip_whitespace(__FILE__); do_nothing(); ?>