http://www.php.net/manual/en/function.stream-notification-callback.php
根据我不希望以下内容会产生错误:
<?php
stream_context_create(array('notification' => 'callback'));
...但确实如此:
Warning: stream_context_create(): options should have the form ["wrappername"]["optionname"] = $value in /path/to/file.php on line 2
这也会产生错误:
<?php
$ctx = stream_context_create();
stream_context_set_option($ctx, array('notification' => 'callback'));
具有讽刺意味的是,示例中的代码stream_notification_callback
不会产生错误。但由于它使用stream_context_set_params
而不是stream_context_set_option
我不相信它实际上在做任何事情,哈哈: