ID:               20666
 User updated by:  [EMAIL PROTECTED]
-Summary:          Array handling within objects crash (obcure)
 Reported By:      [EMAIL PROTECTED]
 Status:           Open
 Bug Type:         Reproducible crash
 Operating System: Windows 2000
 PHP Version:      4.2.3
 New Comment:

Within the object template, I have the following code which is valid
(see bottom). It is a caching mechanism where $this->blocks[$handle]
is
a piece of html delimited by <!--##START.NAME##--><!--##END.NAME##-->,
you get the idea. An attempt to implement a caching system was met
with
a crash. The problem appears to be somewhere within the means by which
arrays are handled. 

I used the following setup when reproducing this crash:

Server: Win32 Apache 1.3.26
PHP Installation: SAPI Module via php4apache.dll
OS: Windows 2000 Professional Service Pack 3

I have reason to believe that this may exist in the global code as
well
as after testing it on another server, the array indices did not
return
a value when set.

I should also note that this a rather obscure bug (rather obvious),
however the results are the same on every execution attempt. Removing
the calls to this array seem to remove this problem. However further
research showed that the first call is benign. The second call to that
array indice causes a crash.

The alternate server (http://soulnet.tk):
OS: Windows XP
CPU: Dual Intel Pentiums 232Mhz (each)
Server: OmniHTTPD 1.0.1
PHP Installation: CGI-Binary

=============================================

function tpl_seek ( $handle , $name ) 
{

        $name = strtoupper ( $name );
                
if ( isset ( $this->tpl_cache[$handle][$name] ) ) return
$this->cache[$handle][$name];
                
        if ( preg_match (
"/<!--##START\.$name##-->(.+?)<!--##END\.$name##-->/si" ,
$this->blocks[$handle] , $matches ) )
        {
                $this->tpl_cache[$handle][$name] = $matches[1];
                $this->current = $matches[1];
                return TRUE;
        }

        return FALSE;
}


Previous Comments:
------------------------------------------------------------------------

[2002-11-26 22:43:48] [EMAIL PROTECTED]

Within the object template, I have the following code which is valid
(see bottom). It is a caching mechanism where $this->blocks[$handle] is
a piece of html delimited by <!--##START.NAME##--><!--##END.NAME##-->,
you get the idea. An attempt to implement a caching system was met with
a crash. The problem appears to be somewhere within the means by which
arrays are handled. 

I used the following setup when reproducing this crash:

Server: Win32 Apache 1.3.26
PHP Installation: SAPI Module via php4apache.dll
OS: Windows 2000 Professional Service Pack 3

I have reason to believe that this may exist in the global code as well
as after testing it on another server, the array indices did not return
a value when set.

The alternate server (http://soulnet.tk):
OS: Windows XP
CPU: Dual Intel Pentiums 232Mhz (each)
Server: OmniHTTPD 1.0.1
PHP Installation: CGI-Binary

=============================================

function tpl_seek ( $handle , $name ) 
{

        $name = strtoupper ( $name );
                
if ( isset ( $this->tpl_cache[$handle][$name] ) ) return
$this->cache[$handle][$name];
                
        if ( preg_match (
"/<!--##START\.$name##-->(.+?)<!--##END\.$name##-->/si" ,
$this->blocks[$handle] , $matches ) )
        {
                $this->tpl_cache[$handle][$name] = $matches[1];
                $this->current = $matches[1];
                return TRUE;
        }

        return FALSE;
}

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=20666&edit=1

Reply via email to