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/streams/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/streams/bug67626.phpt |
--TEST-- Bug #67626: Exceptions not properly handled in user stream handlers --FILE-- <?php class MyStream { public function stream_open() { return true; } public function stream_read() { throw new Exception('stream_read_exception'); return 'read'; } public function stream_eof() { return true; } public function stream_write() { throw new Exception('stream_write_exception'); return 42; } } stream_wrapper_register("my", "MyStream"); $fp = fopen('my://foobar', 'r+'); try { fread($fp, 42); } catch (Exception $e) { echo $e->getMessage(); } echo "\n"; try { fwrite($fp, 'foobar'); } catch (Exception $e) { echo $e->getMessage(); } ?> --EXPECTF-- stream_read_exception stream_write_exception
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare