php字符串
php字符串的几个函数:
strlen():
用于输出字符的数量
<?php $a="haq"; echo strlen($a); ?>
strpos():
用于输出指定字符的位置
<?php $q="何安圻"; echo strpos("$q","圻"); ?>