Date: 03/28/00
- Next message: Jim Jagielski: "Re: [PHP-DEV] [PHP4] Problem with old versions of 'ar'"
- Previous message: Jim Jagielski: "Re: [PHP-DEV] [PHP4] Problem with old versions of 'ar'"
- In reply to: Zeev Suraski: "[PHP-DEV] PHP 4.0 Release Candidate 1"
- Next in thread: System Administrator a.k.a. The Root of the Problem: "[PHP-DEV] Re: [PHP4BETA] PHP 4.0 Release Candidate 1"
- Reply: System Administrator a.k.a. The Root of the Problem: "[PHP-DEV] Re: [PHP4BETA] PHP 4.0 Release Candidate 1"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> - Fixed a crash problem in func_num_args(), func_get_arg() and func_get_args()
> when used as function arguments (Andi)
when i use func_num_args() i get allways:
Fatal error: func_num_args(): Can't be used as a function parameter in
browser/libs/impfilter.inc on line 205
here is impfilter.inc at line 205: it is a method of a class.
function MultFiltersJoin() {
$out=array("DATA"=>array(), "DEFAULT"=>array(), "DEL"=>array());
for ($i=0;$i<func_num_args();$i++) {
$ar=func_get_arg($i);
if (is_array($this->filters[$ar]))
$out=$this->FiltersJoin($out,$this->filters[$ar]);
}
return $out;
}
-- 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: Jim Jagielski: "Re: [PHP-DEV] [PHP4] Problem with old versions of 'ar'"
- Previous message: Jim Jagielski: "Re: [PHP-DEV] [PHP4] Problem with old versions of 'ar'"
- In reply to: Zeev Suraski: "[PHP-DEV] PHP 4.0 Release Candidate 1"
- Next in thread: System Administrator a.k.a. The Root of the Problem: "[PHP-DEV] Re: [PHP4BETA] PHP 4.0 Release Candidate 1"
- Reply: System Administrator a.k.a. The Root of the Problem: "[PHP-DEV] Re: [PHP4BETA] PHP 4.0 Release Candidate 1"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

