|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 Patchesbug64346-2.diff (last revision 2013-04-12 06:50 UTC by laruence@php.net)bug54346.diff (last revision 2013-03-04 13:25 UTC by dmitry at zend dot com) Pull RequestsHistoryAllCommentsChangesGit/SVN commits              [2013-03-04 10:38 UTC] laruence@php.net
 
-Status:      Open
+Status:      Verified
-Assigned To:
+Assigned To: dmitry
  [2013-03-04 10:38 UTC] laruence@php.net
  [2013-03-04 13:43 UTC] laruence@php.net
  [2013-03-04 13:50 UTC] laruence@php.net
 
-Status: Verified
+Status: Feedback
  [2013-03-04 13:50 UTC] laruence@php.net
  [2013-03-04 14:50 UTC] gen dot work at gmail dot com
  [2013-03-04 14:50 UTC] gen dot work at gmail dot com
 
-Status: Feedback
+Status: Assigned
  [2013-03-04 14:53 UTC] gen dot work at gmail dot com
  [2013-03-04 15:59 UTC] dmitry@php.net
  [2013-04-12 06:50 UTC] laruence@php.net
  [2013-12-02 16:57 UTC] Terry at ellisons dot org dot uk
  [2013-12-08 16:16 UTC] Terry at ellisons dot org dot uk
  [2013-12-08 16:18 UTC] Terry at ellisons dot org dot uk
  [2016-11-12 11:48 UTC] showerheadsuk at hotmail dot com
  [2017-10-24 08:03 UTC] kalle@php.net
 
-Status:      Assigned
+Status:      Open
-Assigned To: dmitry
+Assigned To:
  [2017-11-21 18:48 UTC] shiranai7 at hotmail dot com
  [2018-08-24 12:27 UTC] syl dot fabre at gmail dot com
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 09:00:01 2025 UTC | 
Description: ------------ The code below works as expected on version 5.3. Test script: --------------- namespace Foo { function bar() { var_dump(is_callable('Foo\\time')); var_dump(time()); } } namespace { \Foo\bar(); eval('namespace Foo; function time() { return -1; }'); \Foo\bar(); } Expected result: ---------------- bool(false) int(1362390237) bool(true) int(-1) Actual result: -------------- bool(false) int(1362390237) bool(true) int(1362390237)