php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #49200 stream bindto context generates an error
Submitted: 2009-08-09 09:40 UTC Modified: 2010-05-18 10:11 UTC
From: jeremy at ssnet dot ca Assigned:
Status: Not a bug Package: Streams related
PHP Version: 6SVN-2009-08-09 (SVN) OS: FreeBSD 7.2-STABLE
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
36 - 2 = ?
Subscribe to this entry?

 
 [2009-08-09 09:40 UTC] jeremy at ssnet dot ca
Description:
------------
Specifying any IP address for bindto in stream_context_set_option() produces an error "(local_addr context option is not a string.)"

Reproduce code:
---------------
$context = stream_context_create ();
stream_context_set_option ($context, 'socket', 'bindto', '127.0.0.1:0');
$contents = file_get_contents ("http://php.net", FALSE, $context);

Expected result:
----------------
Should return the contents of php.net

Actual result:
--------------
Warning: file_get_contents(http://php.net/): failed to open stream: local_addr context option is not a string.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-05-18 10:11 UTC] mike@php.net
-Status: Open +Status: Bogus
 [2010-05-18 10:11 UTC] mike@php.net
Not reproducible, I get

Warning: file_get_contents(http://php.net): failed to open stream: Invalid argument

unless I specify an IP address connected to the outside world.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 08:02:42 2024 UTC