if (($length = strpos($string, '@')) === false) { echo'There was no @ in the e-mail address'; } else { echo'This is a right e-mail address-' . $length; }
$text = "Chief Justice Roberts, President Carter, President Clinton, President Bush, President Obama, fellow Americans and people of the world, thank you. We, the citizens of America, are now joined in a great national effort to rebuild our country and restore its promise for all of our people.";
echo substr_replace($text, "...", 25);
1.4 逐字节处理字符串
问题
需要分别处理字符串中的各个字节
实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
$string = "This weekend,I am going shopping for pet chicken."; $vowels = 0;
foreach ($books as $book) { print pack('A30A20A10', $book[0], $book[1], $book[2]) . "\n"; } /* trueName nickName birthday Elmer Gantry Sinclair Lewis 1927 The Scarlatti Inheritance Robert Ludlum 1971 The Parsifal Mosaic William Styron 1979 */
1.15 分解字符串
问题
需要将一个字符串分解为片段。例如希望访问用户在一个 <textarea> 表单域中输入的各行文本
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php $string = 'My sentence is not very complicated'; $words = explode(' ', $string); /* Array ( [0] => My [1] => sentence [2] => is [3] => not [4] => very [5] => complicated ) */
1.16 使文本在指定行长度自动换行
问题
需要实现字符串自动换行
实现
1 2 3 4 5
<?php $text = "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.";