PHP substr strlen trim str_replace str_repeat explode implode

PHP substr strlen trim str_replace str_repeat explode implode

<?php

//substr() 函数返回字符串的一部分
//substr(string,start,length)
//echo substr("jiangzhihao", 6);
echo substr("jiangzhihao", 0, 5);

//strlen() 函数返回字符串的长度
echo strlen("jiangzhihao");

//trim() 函数移除字符串两侧的空白字符
echo trim("  jiangzhihao  ");

//str_replace() 函数替换字符串中的一些字符(区分大小写)
//str_replace(find,replace,string)
echo str_replace("jiang","9001","jiangzhihao");

//str_repeat() 函数把字符串重复指定的次数
//str_repeat(string,repeat)
echo str_repeat(".", 10);

//explode() 函数使用一个字符串分割另一个字符串,并返回由字符串组成的数组。
//explode(separator,string,limit)
print_r (explode(".", "jiang.zhi.hao"));

//implode() 函数返回一个由数组元素组合成的字符串
$arr = array('jzh', 'hao', 'jiang', 'ido');
echo implode(" ", $arr);
?>

 

发表回复

您的电子邮箱地址不会被公开。