On 01/18/2007 05:06 PM, Jingcheng Zhang wrote:
Hi,
    I'm now trying OOP in PHP5, and enjoy it very much. However, as we know
PHP5 does not allow compile-time instantiation,
so when I try this script:

<?php
class C {
    static private $o = new stdClass();
}
?>

Class properties are initialized in compile time, therefore they cannot be initialized with expressions, which are executed in runtime.

--
Wbr, Antony Dovgal

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

Reply via email to