1--TEST-- 2E_ERROR during UserStream Open 3--FILE-- 4<?php 5 6class FailStream { 7 public function stream_open($path, $mode, $options, &$opened_path) { 8 _some_undefined_function(); 9 } 10} 11stream_wrapper_register('mystream', 'FailStream'); 12fopen('mystream://foo', 'r'); 13echo 'Done'; 14?> 15--EXPECTF-- 16Fatal error: Uncaught Error: Call to undefined function _some_undefined_function() in %s%euser-stream-error.php:%d 17Stack trace: 18#0 [internal function]: FailStream->stream_open('mystream://foo', 'r', 0, NULL) 19#1 %s%euser-stream-error.php(%d): fopen('mystream://foo', 'r') 20#2 {main} 21 thrown in %s%euser-stream-error.php on line %d 22