Blogger Information
Blog 32
fans 0
comment 0
visits 19603
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0418 字符串操作
XuanGG的博客
Original
454 people have browsed it

实例

<?php
$a = 'acjd';
echo strlen($a);
$b =['a','b','v','d'];
echo '<hr color="red">';
$c = implode('**',$b);
echo $c ;
$gg ='explode';
echo '<hr color="green">';
$gh = str_split($gg,2);
print_r($gh );


echo '<hr color="yellow">';

echo strpos('www.baidu.com','baidu');
echo "<hr color='black'>";

echo str_replace("baidu","taobao","www.baidu.com");


?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!