You are here: Re: [PHP] Skipping function arguments! « PHP « IT news, forums, messages
Re: [PHP] Skipping function arguments!

Posted by Marek Kilimajer on 04/28/05 15:16

Vedanta Barooah wrote:
> Hello All,
> Cosider this :
>
> function add($a=1,$b=2,$c=3){
> return $a + $b + $c;
> }
>
> how do i skip the second argument while calling the function, is there
> a process like this:
>
> echo add(1,,1); # where i expect 2 to be printed,

php does not support this. you can workaround this using:

function add($a = null,$b = null, $c = null){
if(is_null($a)) $a = 1;
if(is_null($b)) $b = 2;
if(is_null($c)) $c = 3;
return $a + $b + $c;
}

add(1, null, 1);

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация