社区应用 最新帖子 精华区 社区服务 会员列表 统计排行
主题 : [PHP练习册]把单词首字母转化为大写的例子
级别: 管理员
显示用户信息 
0  发表于: 2004-03-08   

[PHP练习册]把单词首字母转化为大写的例子

这是将一句英文的每个单词的第一个字母转换成大写的例子。
[code]  
  <?php
  function titleCase($string) {
  global $new;  
  $len=strlen($string);
    $i=0;
    $last="";
    $new="";
    $string=strtoupper($string);
    while ($i<$len):
        $char=substr($string,$i,1);
        if (ereg("[A-Z]",$last)):
          $new.=strtolower($char);
        else:
          $new.=strtoupper($char);
        endif;
        $last=$char;
        $i++;
    endwhile;
    return($new);
  };

//以下是测试:
$k="hi,i am TEAMAN,nice to meet of all of you";
  titlecase($k);
  echo $new;
//结果将返回:Hi,I Am Teaman,Nice To Meet All Of You
  ?>
[/code]
水中的影,镜中的天
级别: 管理员
显示用户信息 
1  发表于: 2004-03-08   
笔记稍后补上……
水中的影,镜中的天
描述
快速回复

按"Ctrl+Enter"直接提交