php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35974 zendenc breaks simple for-loop
Submitted: 2006-01-12 01:09 UTC Modified: 2006-01-12 01:16 UTC
From: ak at avatartechnology dot com Assigned:
Status: Not a bug Package: *Compile Issues
PHP Version: 4.4.1 OS: Linux
Private report: No CVE-ID: None
 [2006-01-12 01:09 UTC] ak at avatartechnology dot com
Description:
------------
The attached code behaves differently when Zend-compiled versus not. (It breaks when Zend-compiled). It looks like maybe the for-loop is getting optimized away, incorrectly. The Zend Optimizer running on the server is: Zend Optimizer v2.5.5. I'll post the version of the Zend compiler when I get a chance to look it up. I lied about the PHP version (4.3.9) because upgrading to test is not practical, but it seems to depend on the encoder version, not the PHP version.

Reproduce code:
---------------
function include_next() {
        # Infer the calling file from the backtrace
        $bt = debug_backtrace();
        for ($i=0; $bt[$i] && !$bt[$i]['file']; $i++);
        $caller = $bt[$i]['file'];
        assert($caller);
        // ... do some stuff with $caller
}

Expected result:
----------------
I expect the assertion to NOT fail.

Actual result:
--------------
Assertion fails.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-01-12 01:16 UTC] helly@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.

Visit http://zend.com and look for support.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 03:01:27 2024 UTC