10.2、操作子字符串
2012-12-08 01:31 TONY|小四 阅读(220) 评论(0) 编辑 收藏 举报 PHP Code By http://t.qq.com/tony-src
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | <?php /** * 按字符分割字符串 */ $email = explode('@','tony.src@outlook.com'); print_r($email); /** * 组合字符串 */ $arr = array('tony','why','windows'); $str = implode('&', $arr); // 它的别名 join() echo $str; /** * 令牌字符串 */ $str = 'i,like#developer .'; $tok = strtok($str, ',#'); while (!!$tok){ echo $tok.'<br />'; $tok = strtok(',#'); } /** * 字符串截取 */ $str = 'tony.src@outlook.com'; echo substr($str, 3,4); /** * 分割字符串,按个取(包括空格)生成数组 */ $str = 'This is a Teacher!'; print_r(str_split($str)); /** * 逆置字符串 */ $str = 'my name is tony.'; echo strrev($str); // 中文有问题 ?> |