php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #59637 Can't set ini variable
Submitted: 2011-02-24 05:28 UTC Modified: 2011-06-23 07:37 UTC
From: iksmail at gmail dot com Assigned:
Status: Closed Package: expect (PECL)
PHP Version: 5.3.5 OS: FreeBSD 7.2-RELEASE
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: iksmail at gmail dot com
New email:
PHP Version: OS:

 

 [2011-02-24 05:28 UTC] iksmail at gmail dot com
Description:
------------
Can't set ini variable expect.timeout and expect.match_max.

Reproduce code:
---------------
var_dump(ini_set('expect.timeout', 3));
var_dump(ini_set('expect.match_max', '1000'));
var_dump(ini_get('expect.timeout'));
var_dump(ini_get('expect.match_max'));

Actual result:
--------------
bool(false)
bool(false)
string(2) "10"
string(4) "5000"


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-06-23 07:37 UTC] spektom at gmail dot com
This bug has been fixed in SVN.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pecl.php.net.

In case this was a pecl.php.net website problem, the change will show
up on the website in short time.
 
Thank you for the report, and for helping us make PECL better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Oct 27 16:01:27 2024 UTC