Custom Query (260 matches)
Results (13 - 15 of 260)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #19 | fixed | inheritance problem | moo | judas_iscariote |
| description |
Hi the following code produces wrong results and segfaults. <?php
abstract class Foo {
protected function & a (){}
abstract function & b ();
}
class Bar extends Foo {
protected function &a(){}
public function &b()
{
$retval =& $this->a();
}
}
$bar = new Bar();
$bar->b();
?>
Notice: Only variable references should be returned by reference in /srv/www/htdocs/bug2.php on line 13 Notice: Only variable references should be returned by reference in /srv/www/htdocs/bug2.php on line 18 * Actual result : at the first call : see expected result. at the second call : Fatal error: Call to protected method Bar::a() from context 'Bar' in bug.php on line 17 and the apache child segfaults :( |
|||
| #20 | fixed | support for __HALT_COMPILER() and __COMPILER_HALT_OFFSET__ | moo | moo |
| description |
same bug as in apc bug #7209 :) |
|||
| #21 | invalid | Apache start: xcache.so: undefined symbol: destroy_zend_function | moo | anonymous |
| description |
Hi, I try to get Apache 2.2.2 with PHP 5.1.4 to run. Without xcache it works. Compiling xcache also works without complaints. But including xcache into php.ini results in this error at apache startup: Failed loading /usr/local/LAMP/php/5.1.4/lib/php/extensions/no-debug-non-zts-20050922/xcache.so: /usr/local/LAMP/php/5.1.4/lib/php/ext ensions/no-debug-non-zts-20050922/xcache.so: undefined symbol: destroy_zend_function my configuration of xcache:
Best regards, Christian |
|||

