字符串函数
<?php
// !1.将字符串转化为大写:strtoupper
$str = 'hell0 word';
echo strtoupper($str) . '<br>';
// !2.将字符串转化为小写:strtolower
$str = 'HELLO WORD';
echo strtolower($str) . '<br>';
// !3.将字符串的首字母转换为大写:ucfirst
$str = 'hell0 word';
echo ucfirst($str) . '<br>';
// !4.将字符串中每个单词的首字母转换为大写:ucwords
echo ucwords($str) . '<br>';
// !5.反转字符串:strrev
$str = 'hell0 word';
echo strrev($str) . '<br>';
//!6.返回字符串中单词的使用情况:str_word_count
$str = 'hell0 word li lao shi';
$str = str_word_count($str);
printf('<pre>%s</pre>',print_r($str,true));
echo '<br>';
//!7 .加密:md5
$str = '123456';
echo md5($str) . '<br>';
if (md5($str) === 'e10adc3949ba59abbe56e057f20f883e') {
echo "相等";
}else{
echo '不相等';
};
//!8.addslashes — 使用反斜线引用字符串
$str = "Is your name O'reilly?";
echo $str . '<br>';
// 输出: Is your name O\'reilly?
echo addslashes($str). '<br>';