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(); ?>