ID:               32225
 Updated by:       [EMAIL PROTECTED]
 Reported By:      paul dot laughlin at ingramentertainment dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Reproducible crash
 Operating System: Gentoo Linux 2.6.10
 PHP Version:      5.0.3
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip




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

[2005-03-07 19:23:37] paul dot laughlin at ingramentertainment dot com

Description:
------------
If you have a fatal error it breaks token_get_all until an apache
restart...

Reproduce code:
---------------
-- Sample Token file <test.file>
Some HTML
<? TEST_TAG ?>
Some More HTML
<? Another_TAG ?>
More HTML
-- End Sample Token File

-- PHP Script --
<?php
$rawData = file_get_contents('test.file');
foreach (token_get_all($rawData) as $token) {
        echo '<pre>';
                print_r($token);        
        echo '</pre>';
}
?>
-- End PHP Script --

If you introduce a parse error as follows, fix the error and reload you
get broken output until apache restart.

<?php
broken...
$rawData = file_get_contents('test.file');
foreach (token_get_all($rawData) as $token) {
        echo '<pre>';
                print_r($token);        
        echo '</pre>';
}
?>


Expected result:
----------------
Array
(
    [0] => 310
    [1] => Some HTML

)

Array
(
    [0] => 365
    [1] => 

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 306
    [1] => TEST_TAG
)

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 367
    [1] => ?>

)

Array
(
    [0] => 310
    [1] => Some More HTML

)

Array
(
    [0] => 365
    [1] => 

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 306
    [1] => Another_TAG
)

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 367
    [1] => ?>

)

Array
(
    [0] => 310
    [1] => More HTML
)

Actual result:
--------------
Array
(
    [0] => 306
    [1] => Some
)

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 306
    [1] => HTML
)

Array
(
    [0] => 368
    [1] => 

)

<

?

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 306
    [1] => TEST_TAG
)

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 367
    [1] => ?>

)

Array
(
    [0] => 310
    [1] => Some More HTML

)

Array
(
    [0] => 365
    [1] => 

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 306
    [1] => Another_TAG
)

Array
(
    [0] => 368
    [1] =>  
)

Array
(
    [0] => 367
    [1] => ?>

)

Array
(
    [0] => 310
    [1] => More HTML
)




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


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

Reply via email to