Date: 11/23/00
- Next message: wiseass <email protected>: "[PHP-DEV] PHP 4.0 Bug #7954: Apache seg fault on any call of mysql_connect()"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #6526 Updated: Unable to build DSO module for RH6.1"
- In reply to: Andi Gutmans: "[PHP-DEV] Passing-by-reference"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] Passing-by-reference"
- Reply: Andi Gutmans: "Re: [PHP-DEV] Passing-by-reference"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> 7) foo($obj->method());
unfortunately this still does not work...
<?php
function &bar() {
$i=1;
return $i; }
class testclass {
function testclass() {
$this->foo(bar()); }
function foo(&$bar) { }
}
?>
andré
-- · André Langhorst · t: +49 571 3201801 · · waldschrott <email protected> · m: +49 173 9558736 · · PHP Quality Assurance · http://qa.php.net ·-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: wiseass <email protected>: "[PHP-DEV] PHP 4.0 Bug #7954: Apache seg fault on any call of mysql_connect()"
- Previous message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #6526 Updated: Unable to build DSO module for RH6.1"
- In reply to: Andi Gutmans: "[PHP-DEV] Passing-by-reference"
- Next in thread: Andi Gutmans: "Re: [PHP-DEV] Passing-by-reference"
- Reply: Andi Gutmans: "Re: [PHP-DEV] Passing-by-reference"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

