PHP - Funzione ctype_print ()

Sintassi

ctype_print ( $text );

Definizione e utilizzo

Questa funzione controlla se tutti i caratteri nella stringa fornita, il testo, sono stampabili.

Parametri

Suor n Parametro e descrizione
1

text(Required)

La stringa testata.

Valore di ritorno

Restituisce TRUE se ogni carattere nel testo creerà effettivamente output (inclusi gli spazi). Restituisce FALSE se il testo contiene caratteri di controllo o caratteri che non hanno alcun output o funzione di controllo.

Esempio

Prova il seguente esempio:

<?php
   $strings = array('asdf\n\r\t', 'k211', "fooo#int%@");
   
   foreach ($strings as $test) {
      if (ctype_print($test)) {
         echo "$test consists of all printable characters. \n";
      }else {
         echo "$test does not have all printable characters. \n";
      }
   }
?>

Questo produrrà il seguente risultato:

asdf\n\r\t consists of all printable characters.
k211 consists of all printable characters.
fooo#int%@ consists of all printable characters.