1--TEST-- 2Test filetype() function: Check character type 3--CREDITS-- 4Dave Kelsey <d_kelsey@uk.ibm.com> 5--SKIPIF-- 6<?php 7if (substr(PHP_OS, 0, 3) == 'WIN') { 8 die('skip no /dev on Windows'); 9} 10if (!file_exists("/dev/null")) { 11 die('skip /dev/null not available'); 12} 13?> 14--FILE-- 15<?php 16echo "-- Checking for char --\n"; 17print( filetype("/dev/null") )."\n"; 18?> 19--EXPECT-- 20-- Checking for char -- 21char 22