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
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: jeremy at ssnet dot ca
New email:
PHP Version: OS:

 

 [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 Mar 28 20:01:28 2024 UTC