php-src/ext/ctype/tests/ctype_print_basic.phpt
2008-03-17 09:52:02 +00:00

28 lines
539 B
PHP

--TEST--
Test ctype_print() function : basic functionality
--FILE--
<?php
/* Prototype : bool ctype_print(mixed $c)
* Description: Checks for printable character(s)
* Source code: ext/ctype/ctype.c
*/
echo "*** Testing ctype_print() : basic functionality ***\n";
$orig = setlocale(LC_CTYPE, "C");
$c1 = "Hello, World!";
$c2 = null;
var_dump(ctype_print($c1));
var_dump(ctype_print($c2));
setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--
*** Testing ctype_print() : basic functionality ***
bool(true)
bool(false)
===DONE===