PHP过滤器缩写世界首都案例

时间:2014-01-16 06:07:38

标签: php jquery ajax

我正在寻找改变缩写条件的代码。

u.s. should become U.S.

I.n.d. should become I.N.D.

m.l.A. should become M.L.A.

b.s.s.P. should become B.S.S.P.

在字符串中的任何单词都应该更改为大写字母。

2 个答案:

答案 0 :(得分:0)

使用regex检测单词是否有点。如果是,请使用strtoupper()将其转换为大写。

答案 1 :(得分:0)

$str = "u.s.";

if (preg_match('/^([A-Za-z]\.){2,}$/', $str)) {
    $str = strtoupper($str);
}