php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #64576 stream_notification_callback doesn't seem to work
Submitted: 2013-04-03 13:12 UTC Modified: 2013-04-06 15:36 UTC
From: zelnaga at gmail dot com Assigned:
Status: Not a bug Package: Streams related
PHP Version: 5.4.13 OS: Windows 7
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: zelnaga at gmail dot com
New email:
PHP Version: OS:

 

 [2013-04-03 13:12 UTC] zelnaga at gmail dot com
Description:
------------
http://www.php.net/manual/en/function.stream-notification-callback.php

Per that I'd wouldn't expect the following test scripts to produce errors but they 
do.

Test script:
---------------
<?php
stream_context_create(array('notification' => 'callback'));
?>

<?php
$ctx = stream_context_create();
stream_context_set_option($ctx, array('notification' => 'callback'));
?>

Expected result:
----------------
(blank)

Actual result:
--------------
Warning: stream_context_create(): options should have the form ["wrappername"]
["optionname"] = $value in /path/to/file.php on line 2

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-04-06 15:36 UTC] felipe@php.net
You have called stream_context_set_option() instead of stream_context_set_params().
 [2013-04-06 15:36 UTC] felipe@php.net
-Status: Open +Status: Not a bug
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC