--TEST--
Test ctype_graph() function : usage variations - octal and hexadecimal values
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* Prototype  : bool ctype_graph(mixed $c)
 * Description: Checks for any printable character(s) except space 
 * Source code: ext/ctype/ctype.c 
 */

/*
 * Pass octal and hexadecimal values to ctype_graph() to test behaviour
 */

echo "*** Testing ctype_graph() : usage variations ***\n";

$orig setlocale(LC_CTYPE"C");

$octal_values = array(061,  062,  063,  064);
$hex_values = array  (0x310x320x330x34);

echo 
"\n-- Octal Values --\n";
$iterator 1;
foreach(
$octal_values as $c) {
    echo 
"-- Iteration $iterator --\n";
    
var_dump(ctype_graph($c));
    
$iterator++;
}

echo 
"\n-- Hexadecimal Values --\n";
$iterator 1;
foreach(
$hex_values as $c) {
    echo 
"-- Iteration $iterator --\n";
    
var_dump(ctype_graph($c));
    
$iterator++;
}

setlocale(LC_CTYPE$orig);
?>
===DONE===
--EXPECTF--
*** Testing ctype_graph() : usage variations ***

-- Octal Values --
-- Iteration 1 --
bool(true)
-- Iteration 2 --
bool(true)
-- Iteration 3 --
bool(true)
-- Iteration 4 --
bool(true)

-- Hexadecimal Values --
-- Iteration 1 --
bool(true)
-- Iteration 2 --
bool(true)
-- Iteration 3 --
bool(true)
-- Iteration 4 --
bool(true)
===DONE===