еррор
Следующий код работает корректно если не заенкоден, и пишет ошибку
если зенкоден любой версией ZendEncoder, запускается с ZendOptimizer 1.2
Fatal error: Cannot redeclare class in /.../test_encode_inc.php on li
======= test_encode.php ============
<?
include 'test_encode_inc.php';
include 'test_encode_inc.php';
include 'test_encode_inc.php';
include 'test_encode_inc.php';
?>End of the script.<hr>
================================
======= test_encode_inc.php =========
<?php
if (!defined("UniqueConstant")) {
define("UniqueConstant", 1);
class A { function foo() { echo "A1"; } };
}?>
================================