Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/directory/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/directory/DirectoryClass_error_001.phpt |
--TEST-- Directory class behaviour. --FILE-- <?php echo "\n--> Try all methods with bad handle:\n"; $d = new Directory(getcwd()); $d->handle = "Havoc!"; var_dump($d->read()); var_dump($d->rewind()); var_dump($d->close()); echo "\n--> Try all methods with no handle:\n"; $d = new Directory(getcwd()); unset($d->handle); var_dump($d->read()); var_dump($d->rewind()); var_dump($d->close()); echo "\n--> Try all methods with wrong number of args:\n"; $d = new Directory(getcwd()); var_dump($d->read(1,2)); var_dump($d->rewind(1,2)); var_dump($d->close(1,2)); ?> --EXPECTF-- --> Try all methods with bad handle: Warning: Directory::read(): supplied argument is not a valid Directory resource in %s on line %d bool(false) Warning: Directory::rewind(): supplied argument is not a valid Directory resource in %s on line %d bool(false) Warning: Directory::close(): supplied argument is not a valid Directory resource in %s on line %d bool(false) --> Try all methods with no handle: Warning: Directory::read(): Unable to find my handle property in %s on line %d bool(false) Warning: Directory::rewind(): Unable to find my handle property in %s on line %d bool(false) Warning: Directory::close(): Unable to find my handle property in %s on line %d bool(false) --> Try all methods with wrong number of args: Warning: Directory::read() expects at most 1 parameter, 2 given in %s on line %d NULL Warning: Directory::rewind() expects at most 1 parameter, 2 given in %s on line %d NULL Warning: Directory::close() expects at most 1 parameter, 2 given in %s on line %d NULL
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare