字符串操作

字符串操作
  • 拼接
  • 截取
  • 长度
  • 相等
  • 包含
  • 替换
  • 去除开头末尾字符串
");
echo $bodytag;

字符串分割

php > $result = explode(';','1;2;test');
php > var_dump($result);
array(3) {
  [0]=>
  string(1) "1"
  [1]=>
  string(1) "2"
  [2]=>
  string(4) "test"
}

字符串拼接

php > $arry = array("1","haha","test");
php > $result= implode(';',$arry);
php > var_dump($result);
string(11) "1;haha;test"

你可能感兴趣的:(字符串操作)