<?php
$strings = array('AB10BC99', 'AR1012', 'ab12bc99');
公告版位
礁溪溫泉套房,位於宜蘭縣礁溪國小旁,近麥當勞,離礁溪火車站、首都客運、葛瑪蘭汽車客運約5分鍾車程,礁溪溫泉套房出租,您不需要再行添購傢俱,只需要帶幾件衣服,就能輕輕鬆鬆住進礁溪溫泉套房,天天在礁溪溫泉套房洗溫泉唷!意洽:游媽媽,電話0939711360,4500~4900元/月
目前分類:ctype函數 (8)
- Jun 16 Thu 2016 13:54
[php]ctype_xdigit 檢測字符串是否只包含十六進製字符
- Jun 16 Thu 2016 13:53
[php]ctype_upper 做大寫字符檢測(判斷字符是不是都是大寫字母)
- Jun 16 Thu 2016 13:52
[php]ctype_space做空白字符檢測
<?php
$strings = array('string1' => "\n\r\t", 'string2' => "\narf12", 'string3' => '\n\r\t');
- Jun 16 Thu 2016 13:46
[php]ctype_lower 做小寫字符檢測(判斷字符是不是都是小寫字母)
<?php
$strings = array('aac123', 'qiutoas', 'QASsdks');
- Jun 16 Thu 2016 12:27
[php]ctype_digit 做純數字檢測
Example #1
<?php
- Jun 16 Thu 2016 12:08
[php]ctype_cntrl 做控製字符檢測(檢測:換行、縮進、空格)
<?php
$strings = array('string1' => "\n\r\t", 'string2' => 'arf12');
- Jun 16 Thu 2016 12:05
[php]ctype_alpha 做純字符檢測
<?php
$strings = array('KjgWZC', 'arf12');
- Jun 16 Thu 2016 12:03
[php]ctype_alnum 做字母和數字字符檢測
<?php
$strings = array('AbCd1zyZ9', 'foo!#$bar');