ctype_print

(PHP 4 >= 4.0.4, PHP 5)

ctype_print -- 印字可能な文字かどうかを調べる

説明

bool ctype_print ( string c)

textの全ての文字が(空白を含めて)実際に出力を行う場合に TRUEを返します。 text に制御文字または全く出力も制御も行わない文字が 含まれている場合に FALSE を返します。

例 1. ctype_print() の例

<?php
$strings
= array('string1' => "asdf\n\r\t", 'string2' => 'arf12', 'string3' => 'LKA#@%.54');
foreach (
$strings as $name => $testcase) {
    if (
ctype_print($testcase)) {
        echo
"The string '$name' consists of all printable characters.\n";
    } else {
        echo
"The string '$name' does not consist of all printable characters.\n";
    }
}
?>

この例の出力は以下のようになります。

The string 'string1' does not consist of all printable characters.
The string 'string2' consists of all printable characters.
The string 'string3' consists of all printable characters.

ctype_cntrl(), ctype_graph(), ctype_punct()も参照して下さい。