Need to make two more changes to your extension before it will work...

 1: PHP_MINIT_FUNCTION(example)
 2: {
 3:     ...
 4:     php_register_url_stream_wrapper("example",
 5:         &example_wrapper TSRMLS_CC);
 6:     ...
 7: }
 8: 
 9: PHP_MSHUTDOWN_FUNCTION(example)
10: {
11:     ...
12:     php_unregister_url_stream_wrapper("example" TSRMLS_CC);
13:     ...
14: };