|
 |
Функция может принимать информацию в виде списка аргументов,
который является списком разделенных запятыми переменных и/или
констант.
PHP поддерживает передачу аргументов по значению (по умолчанию), передачу аргументов по ссылке,
и значения по умолчанию.
Списки аргументов переменной длины поддерживаются, начиная с PHP 4: смотрите раздел
Списки аргументов переменной длины
и описания функций
func_num_args(),
func_get_arg() и
func_get_args() для более детальной информации.
Подобного эффекта можно достичь в PHP 3, передавая функции массив аргументов:
Пример 17-4. Передача массива в функцию
<?php
function takes_array($input)
{
echo "$input[0] + $input[1] = ", $input[0]+$input[1];
}
?>
|
|
По умолчанию аргументы в функцию передаются по значению (это означает, что
если вы измените значение аргумента внутри функции, то вне ее значение
все равно останется прежним). Если вы хотите разрешить функции
модифицировать свои аргументы, вы должны передавать их по ссылке.
Если вы хотите, что бы аргумент всегда передавался по ссылке,
вы можете указать амперсанд (&) перед именем аргумента в описании
функции:
Пример 17-5. Передача аргументов по ссылке
<?php
function add_some_extra(&$string)
{
$string .= 'and something extra.';
}
$str = 'This is a string, ';
add_some_extra($str);
echo $str; ?>
|
|
Функция может определять значения по умолчанию в стиле C++ для
скалярных аргументов, например:
Пример 17-6. Использование значений по умолчанию в определении функции
<?php
function makecoffee($type = "cappuccino")
{
return "Making a cup of $type.\n";
}
echo makecoffee();
echo makecoffee("espresso");
?>
|
|
Результат работы приведенного выше кода будет таким:
Making a cup of cappuccino.
Making a cup of espresso. |
PHP также позволяет использовать массивы и специальный тип NULL в
качестве значений по умолчанию, например:
Пример 17-7. Использование нескалярных типов в качестве значений по умолчанию
<?php
function makecoffee($types = array("cappuccino"), $coffeeMaker = NULL)
{
$device = is_null($coffeeMaker) ? "hands" : $coffeeMaker;
return "Making a cup of ".join(", ", $types)." with $device.\n";
}
echo makecoffee();
echo makecoffee(array("cappuccino", "lavazza"), "teapot");
?>
|
|
Значение по умолчанию должно быть константным выражением, а не
(к примеру) переменной или вызовом функции/метода класса.
Обратите внимание, что все аргументы, для которых установлены
значения по умолчанию, должны находится правее аргументов,
для которых значения по умолчанию не заданы, в противном случае
ваш код может работать не так, как вы этого ожидаете. Рассмотрим
следующий пример:
Пример 17-8. Некорректное использование значений по умолчанию
<?php
function makeyogurt($type = "acidophilus", $flavour)
{
return "Making a bowl of $type $flavour.\n";
}
echo makeyogurt("raspberry"); ?>
|
|
Результат работы приведенного выше примера будет следующим:
Warning: Missing argument 2 in call to makeyogurt() in
/usr/local/etc/httpd/htdocs/php3test/functest.html on line 41
Making a bowl of raspberry . |
Теперь сравним эго со следующим примером:
Пример 17-9. Некорректное использование значений по умолчанию
<?php
function makeyogurt($flavour, $type = "acidophilus")
{
return "Making a bowl of $type $flavour.\n";
}
echo makeyogurt("raspberry"); ?>
|
|
Теперь результат работы примера будет выглядеть так:
Making a bowl of acidophilus raspberry. |
Замечание:
Начиная с PHP 5, значения по умолчанию могут быть переданны по ссылке.
PHP 4 и выше поддерживает списки аргументов переменной длины для функций,
определяемых пользователем. Реализация этой возможности достаточно прозрачна
и заключается в использовании функций func_num_args(),
func_get_arg() и
func_get_args().
Необходимости в специфическом синтаксисе нет, при этом список аргументов
также может быть указан явно и будет обладать тем же поведением.
Аргументы функции
jcaplan at bogus dot amazon dot com
09-Mar-2006 03:11
In function calls, PHP clearly distinguishes between missing arguments and present but empty arguments. Thus:
<?php
function f( $x = 4 ) { echo $x . "\\n"; }
f(); f( null ); f( $y ); ?>
The utility of the optional argument feature is thus somewhat diminished. Suppose you want to call the function f many times from function g, allowing the caller of g to specify if f should be called with a specific value or with its default value:
<?php
function f( $x = 4 ) {echo $x . "\\n"; }
function g( $x = 4 ) { f( $x ); f( $x ); }
function g( $x = null ) { if ( !isset( $x ) ) { f(); f() } else { f( $x ); f( $x ); } }
?>
Both options suck.
The best approach, it seems to me, is to always use a sentinel like null as the default value of an optional argument. This way, callers like g and g's clients have many options, and furthermore, callers always know how to omit arguments so they can omit one in the middle of the parameter list.
<?php
function f( $x = null ) { if ( !isset( $x ) ) $x = 4; echo $x . "\\n"; }
function g( $x = null ) { f( $x ); f( $x ); }
f(); f( null ); f( $y ); g(); g( null ); g( 5 ); ?>
ksamvel at gmail dot com
07-Feb-2006 07:55
by default Classes constructor does not have any arguments. Using small trick with func_get_args() and other relative functions constructor becomes a function w/ args (tested in php 5.1.2). Check it out:
class A {
public function __construct() {
echo func_num_args() . "<br>";
var_dump( func_get_args());
echo "<br>";
}
}
$oA = new A();
$oA = new A( 1, 2, 3, "txt");
Output:
0
array(0) { }
4
array(4) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> string(3) "txt" }
jim at symbolengine dot com
19-Jan-2006 04:59
It is also possible to force a parameter type using this syntax. I couldn't see it in the documentation.
function foo(myclass par) {
}
Sergio Santana: ssantana at tlaloc dot imta dot mx
31-Oct-2005 02:59
PASSING A "VARIABLE-LENGTH ARGUMENT LIST OF REFERENCES" TO A FUNCTION
As of PHP 5, Call-time pass-by-reference has been deprecated, this represents no problem in most cases, since instead of calling a function like this:
myfunction($arg1, &$arg2, &$arg3);
you can call it
myfunction($arg1, $arg2, $arg3);
provided you have defined your function as
function myfuncion($a1, &$a2, &$a3) { // so &$a2 and &$a3 are
// declared to be refs.
... <function-code>
}
However, what happens if you wanted to pass an undefined number of references, i.e., something like:
myfunction(&$arg1, &$arg2, ..., &$arg-n);?
This doesn't work in PHP 5 anymore.
In the following code I tried to amend this by using the
array() language-construct as the actual argument in the
call to the function.
<?php
function aa ($A) {
foreach ($A as &$x) {
$x += 2;
}
}
$x = 1; $y = 2; $z = 3;
aa(array(&$x, &$y, &$z));
echo "--$x--$y--$z--\n";
?>
I hope this is useful.
Sergio.
grinslives13 at hotmail dot com~=s/i/ee/g
24-Sep-2005 10:55
Given that we have two coding styles:
#
# Code (A)
#
funtion foo_a (&$var)
{
$var *= 2;
return $var;
}
foo_a($a);
#
# Code (B)
#
function foo_b ($var)
{
$var *= 2;
return $var;
}
foo_b(&$a);
I personally wouldn't recommend (B) - I think it strange why php would support such a convention as it would have violated foo_b's design - its use would not do justice to its function prototype. And thinking about such use, I might have to think about copying all variables instead of working directly on them...
Coding that respects function prototypes strictly would, I believe, result in code that is more intuitive to read. Of course, in php <=4, not being able to use default values with references, we can't do this that we can do in C:
#
# optional return-value parameters
#
int foo_c (int var, int *ret)
{
var *= 2;
if (ret) *ret = var;
return var;
}
foo_c(2, NULL);
Of course, since variables are "free" anyway, we can always get away with it by using dummy variables...
zlel
nate at natemurray dot com
30-Aug-2005 03:15
Of course you can fake a global variable for a default argument by something like this:
<?php
function self_url($text, $page, $per_page = NULL) {
$per_page = ($per_page == NULL) ? $GLOBALS['gPER_PAGE'] : $per_page; return sprintf("<a href=%s?page=%s&perpage=%s>%s</a>", $_SERVER["PHP_SELF"], $page, $per_page, $text);
}
?>
Angelina Bell
25-Jul-2005 12:40
It is so easy to create a constant that the php novice might do so accidently while attempting to call a function with no arguments. For example:
<?php
function LogoutUser(){
blah blah blah;
return true;
}
function SessionCheck(){
blah blah blah;
...
if ($timeout) LogoutUser; }
?>
OOPS! I don't notice my typo, the SessionCheck function
doesn't work, and it takes me all afternoon to figure out why not!
<?php
LogoutUser;
print "new constant LogoutUser is " . LogoutUser;
?>
balint , at ./ atres &*( ath !# cx
30-Jun-2005 02:59
(in reply to benk at NOSPAM dot icarz dot com / 24-Jun-2005 04:21)
I could make use of this assignment, as below, to have a permanently existing, but changing data block (because it is used by many other classes), where the order or the refreshed contents are needed for the others: (DB init done by one, an other changed the DB, and thereafter all others need to use the other DB without creating new instances, or creating a log array in one, and we would like to append the new debug strings to the array, atmany places.)
class xyz {
var argN = array();
function xyz($argN) {
$this->argN = &$argN;
}
function etc($text) {
array_push($this->argN, $text);
}
}
class abc {
var argM = array();
function abc($argM) {
$this->argM = &$argM;
}
function etc($text) {
array_push($this->argM, $text);
}
}
$messages=array("one", "two");
$x = new xyz(&$messages);
$x->etc("test");
$a = new abc(&$messages);
$a->etc("tset");
...
benk at NOSPAM dot icarz dot com
24-Jun-2005 07:21
This isn't necessarily the right place to store this piece of information, but I discovered a neat feature of the 'by reference' operator (&). You can use this assignment operator to assign a pointer to another variable. This makes it possible to update BOTH varaibles and have the value change in the other. I have not yet explored scope of this test, but here is a simple test that I ran on PHP 4.3.9 with the following results:
$abc = "Test";
$def = "";
print("ABC = $abc\tDEF = $def\n"); // ABC = Test DEF =
$def = &$abc;
print("ABC = $abc\tDEF = $def\n"); // ABC = Test DEF = Test
$abc = "test2";
print("ABC = $abc\tDEF = $def\n"); // ABC = test2 DEF = test2
$def = "nextval";
print("ABC = $abc\tDEF = $def\n"); // ABC = nextval DEF = nextval
unset($def);
print("ABC = $abc\tDEF = $def\n"); // ABC = nextval DEF =
$def = "yet another value";
print("ABC = $abc\tDEF = $def\n"); // ABC = nextval DEF = yet another value
csaba at alum dot mit dot edu
26-Jan-2005 04:58
Argument evaluation left to right means that you can save yourself a temporary variable in the example below whereas $current = $prior + ($prior=$current) is just the same as $current *= 2;
function Sum() { return array_sum(func_get_args()); }
function Fib($n,$current=1,$prior=0) {
for (;--$n;) $current = Sum($prior,$prior=$current);
return $current;
}
Csaba Gabor
PS. You could, of course, just use array_sum(array(...)) in place of Sum(...)
trosos at atlas dot cz
15-Jul-2004 06:31
Function arguments are evaluated from left to right.
heck AT fas DOT harvard DOT edu
24-Mar-2004 05:49
I have some functions that I'd like to be able to pass arguments two ways: Either as an argument list of variable length (e.g. func(1, 2, 3, 4)) or as an array (e.g., func(array(1,2,3,4)). Only the latter can be constructed on the fly (e.g., func($ar)), but the syntax of the former can be neater.
The way to do it is to begin the function as follows:
$args = func_get_args();
if (is_array ($args[0]))
$args = $args[0];
Then one can just use $args as the list of arguments.
thesibster at hotmail dot com
30-Jun-2003 11:43
Call-time pass-by-ref arguments are deprecated and may not be supported later, so doing this:
----
function foo($str) {
$str = "bar";
}
$mystr = "hello world";
foo(&$mystr);
----
will produce a warning when using the recommended php.ini file. The way I ended up using for optional pass-by-ref args is to just pass an unused variable when you don't want to use the resulting parameter value:
----
function foo(&$str) {
$str = "bar";
}
foo($_unused_);
----
Note that trying to pass a value of NULL will produce an error.
bishop
03-Jun-2003 02:06
A tiny clarification on the notes of "keeper at odi dot com dot br", et. al.
Functions explicitly prototyped with formal parameters passed by reference can't have default values. However, functions prototyped to assign default values to formal parameters may be passed references.
For example, this is a parse error:
function foo(&$bar = null) {
// formal parameters as references can't have default values
$bar = 242;
}
While this is perfectly legal (and probably what you want, mostly):
function foo($bar = null) {
$bar = 242;
}
foo(); // valid call, no warnings about missing args
foo(&$x); // valid call, post $x == 242
mjohnston at planetactive dot com
26-Mar-2003 07:14
not only do default values not work with passing by reference, but you can't pass NULL as a parameter that is expected to be a reference, and passing too few parameters to a function causes a warning.
bostjan dot skufca at domenca dot com
09-Dec-2002 04:16
have function
function foo($bar=3) {
if (!isset($bar)) {
echo "I'm not set to my default value";
}
and if you do
foo($some_unset_variable);
the $bar variable does not adopt default value (3) as one might expect but it is not set.
guillaume dot goutaudier at eurecom dot fr
19-Jul-2002 12:15
Concerning default values for arguments passed by reference:
I often use that trick:
func($ref=$defaultValue) {
$ref = "new value";
}
func(&$var);
print($var) // echo "new value"
Setting $defaultValue to null enables you to write functions with optional arguments which, if given, are to be modified.
t dot orf at gmx dot de
07-May-2002 06:48
concerning rbronosky@mac.com 11-May-2001 06:17:
You can include the variable name in the output if you simply pass that name instead of the value:
function show($arrayName) {
global $$arrayName;
echo("<pre>\n$arrayName == ");
print_r($$arrayName);
echo "</pre>";
}
show('myArray');
wls at wwco dot com
20-Nov-2001 11:29
Follow up to resource passing:
It appears that if you have defined the resource in the same file
as the function that uses it, you can get away with the global trick.
Here's the failure case:
include "functions_doing_globals.php"
$conn = openDatabaseConnection();
invoke_function_doing_global_conn();
...that it fails.
Perhaps it's some strange scoping problem with include/require, or
globals trying to resolve before the variable is defined, rather
than at function execution.
keeper at odi dot com dot br
07-Oct-2001 04:20
Whem arguments are passed by reference, default values wont work.
duncanmadcow at hotmail dot com
05-Sep-2001 03:50
I have tried the example given by ak@avatartech.com
it did not work I use php 4.0.6 on windows 98
I do think that it is good that there is no automatic parameter passing, thus it would force people to do good programming practie
rwillmann at nocomment dot sk
21-Jun-2001 03:05
There is no way how to deal with calling by reference when variable lengths argument list are passed.
<br>Only solutions is to use construction like this:<br>
function foo($args) {<br>
...
}
foo(array(&$first, &$second));
Above example pass by value a list of references to other variables :-)
It is courios, becouse when you call a function with arguments passed via &$parameter syntax, func_get_args returns array of copies :-(
rwi
korba at korbs dot pl
29-May-2001 06:08
Don't try to pass func_get_arg() as an argument of the other function. So:
function foo() {
foo2(func_get_arg(0));
}
won't work.
artiebob at go dot com
25-Feb-2001 01:48
here is the code to pass a user defined function as an argument. Just like in the usort method.
func2("func1");
function func1 ($arg){
print ("Hello $arg");
}
function func2 ($arg1){
$arg1("World"); //Does the same thing as the next line
call_user_func ($arg1, "World");
}
david at petshelter dot net
24-Jan-2001 11:23
With reference to the note about extract() by dietricha@subpop.com:
He is correct and this is great! What he does not say explicitly is that the extracted variable names have the scope of the function, not the global namespace. (This is the appropriate behavior IMO.) If for some reason you want the extracted variables to be visible in the global namespace, you must declare them 'global' inside the function.
alex at networkessence dot com
24-Jan-2001 02:28
I found this useful:
You can call a function by using the value of a string.
function test() {
echo "hello world";
}
$string = "test";
$string();
would output "hello world"
marvinalone at gmx dot net
06-Jan-2001 06:19
Nice to know is this:
If you call a function giving an unset variable, it will be unset in the function. Consider this:
function my_test ($var) {
if (isset ($var)) echo ("set");
}
my_test ($unused);
This will _not_ echo "set", regardless of the variable being passed by value or by reference.
(If my newlines are messed up, sorry, this seems to be a konqueror problem)
dietricha at subpop dot com
10-Oct-2000 01:39
if you compiled with "--enable-track-vars" then an easy way to get variable function args is to use extract().
$args = array("color" = "blue","number" = 3);
function my_func($args){
extract($args);
echo $color;
echo $number;
}
the above strategy makes it real easy to globalize form data within functions, or to pass form data arrays to functions:
<input type="text" name="test[color]" value="blue">
etc, etc.
Then in your function, pass $test to extract() to turn the array data into global vars.
or
function my_func($HTTP_POST_VARS){
extract($HTTP_POST_VARS);
// use all your vars by name!
}
coop at better-mouse-trap dot com
09-Oct-2000 08:59
If you prefer to use named arguments to your functions (so you don't have to worry about the order of variable argument lists), you can do so PERL style with anonymous arrays:
function foo($args)
{
print "named_arg1 : " . $args["named_arg1"] . "\n";
print "named_arg2 : " . $args["named_arg2"] . "\n";
}
foo(array("named_arg1" => "arg1_value", "named_arg2" => "arg2_value"));
====== will output: =======
named_arg1 : arg1_value
named_arg2 : arg2_value
almasy at axisdata dot com
20-Aug-2000 04:11
Re: Passing By Reference Inside A Class
Passing arguments by reference does work inside a class. When you do:
$this->testVar = $ref;
inside setTestVar(), you're copying by value instead of copying by reference. I think what you want there is this:
$this->testVar = &$ref;
Which is the new "assign by reference" syntax that was added in PHP4.
dmb27 at cornell dot edu
12-Jul-2000 09:50
The first comment should use func_get_arg(0) and func_get_arg(1) to refer to the 2 parameters (and not func_get_arg(2) ). func_get_arg() starts counting at 0, so the first parameter is func_get_arg(0) and the second is func_get_arg(1)
ak at avatartech dot com
24-Apr-2000 10:19
One interesting thing I've noticed:
function foo() { // accepts any number of arguments
bar()
}
function bar($x,$y) { // same
print("$x $y");
}
foo("one","two);
OUPUT: "one two"
That is, PHP will automatically pass all the variables passed to foo() into bar() if you don't pass them explicitly. I'm not sure how far this extends (i.e. if you pass just one variable, will the rest still get tacked on? etc), but it's interesting, and undocumented.
21-Apr-2000 02:45
You may pass any number of extra parameters to a function, regardless of the prototyping. In addition, the arguments passed to a function will be available via the variable names defined in the function prototype, as well as via the func_get_arg() and func_get_args() functions.
For example:
function printme ($arg) {
for ($ndx = 0; $ndx < $num_args; ++$ndx)
$output .= func_get_arg ($ndx);
print $output;
}
printme ("one ", "two"); # This prints "one two".
This behavior is useful for setting default values for function arguments and for ensuring that a certain number of arguments get passed to a function.
| |