Hi!

As far as I understood the discussion, it was related to OP code caches.

The opcode result from this snippet ...
<?php
namespace Foo;
class Bar {
  public function includeFile() {
     require_once 'file.php';
  }
}

... is not the same as the opcode result from the following:
<?php
class Bar {
   public function includeFile() {
       require_once 'file.php';
   }
}

These will generate identical opcodes except that the class name in the former snippet would be Foo::Bar of course.
--
Stanislav Malyshev, Zend Software Architect
[EMAIL PROTECTED]   http://www.zend.com/
(408)253-8829   MSN: [EMAIL PROTECTED]

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to