當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP ctype_space()用法及代碼示例


PHP中的ctype_space()函數用於檢查字符串的每個字符是否為空格字符。如果所有字符都是空格,則返回True,否則返回False。

用法:

ctype_space(string text)

使用的參數:


  • 文本:-它是指定字符串的必需參數。

返回值:
如果文本中的每個字符都包含空格,則返回TRUE,否則返回false。空白字符還包括製表符,回車符,垂直製表符,換行符和換頁符。

例子:

Input  : \r   
Output : Yes
Explanation: \r is create white space


Input  : abc\r
Output : No   
Explanation: characters "abc" are not white space

以下示例程序旨在說明ctype_space()函數。
示例1:取一個字符串

<?php 
// PHP program to check given string is  
// whitespace character or not 
  
$string = "/n/t/r"; 
  
if (ctype_space($string))  
   echo "Yes \n"; 
else 
   echo "No \n";    
?>
輸出:
No

程序:2獲取字符串數組並使用ctype_space()函數檢查空格

<?php 
// PHP program to check given string is  
// whitespace  character or not 
  
$strings = array('\n\y\t\x\u\o', "\ngfg\n", "\t"); 
  
// Checking above given strings  
//by used of ctype_space()function . 
foreach ($strings as $testcase) { 
      
    if (ctype_space($testcase)) { 
        echo "Yes \n"; 
    } else { 
        echo "No \n"; 
    } 
} 
?>
輸出:
No 
No 
Yes

程序:3
以ctype_space()函數為例,該函數如何在單引號“”和雙引號“”符號中使用字符串。

<?php 
// PHP program to check given string is  
// whitespace  character or not 
  
$strings = array('\n', "\n", '\t', "\t"); 
  
// Checking above given strings  
// by used of ctype_space()function . 
  
foreach ($strings as $testcase) { 
      
    if (ctype_space($testcase)) { 
        echo "Yes \n"; 
    } else { 
        echo "No \n"; 
    } 
} 
?>
輸出:
No 
Yes 
No 
Yes

參考文獻:http://php.net/manual/en/function.ctype-space.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ctype_space() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。