Get latest news and Web Designing tutoria

Saturday, 30 May 2015

PHP Functions and Arguments


Arguments

Functions can be handed variables, so that you can do something with what's inside of them. You pass the variable over to your functions by typing them inside of the round brackets of the function name.
<?PHP
$error_text = "Error message";
display_error_message($error_text);
function display_error_message($error_text) {
print $error_text;

}
?>
The only difference is the that we now have something between the round brackets of our function:
function display_error_message($error_text) {
}
The name is the same, but we've put a variable in between the round brackets. This is the variable that we want to do something with. The one called $error_text. By typing a variable inside of the round brackets, you are setting up something called an argument. An argument is a variable or value that you want your function to deal with.
Notice how the function is called:
$error_text = "Error message";
display_error_message($error_text);
The first line puts something into the variable. But when you want to hand something to a function that has an argument, you need to type it between the round brackets of the function call. In our script, we're typing the name of the variable. But this would do just as well:
display_error_message("Error message");
Here, we're putting direct text between the round brackets. That works ok. But try it like this:
$error_text = "Error message";
display_error_message( );
You'll get an error message from PHP. Something like this:
"Warning: Missing argument 1 for display_error_message( )"
That's telling you that your function has been set up to take an argument, but that you've left the round brackets empty when you tried to call the function.
Your functions can have more than 1 argument. Just separate each argument with a comma. Like this:
function error_check($error_text, error_flag) {
}
To call this function, you'd then need to hand it two arguments:
$error_text = "Error message";
error_flag = 1;
error_check($error_text, error_flag);
If you only hand the above function 1 argument, you'd get error messages from PHP.
So, to recap:
  • To pass something to a function, create an argument
  • To call a function that has an argument, don't leave the round brackets empty
In the next part, you'll see a function that checks for blank text boxes. The function has 1 argument.

Related Posts:

  • PHP Less Than, Greater Than The Less Than ( < ) and Greater Than ( > ) symbols come in quite handy. They are really useful in loops (which we'll deal with in another section), and for testing numbers in general. Suppose you wanted to test … Read More
  • PHP Comparison Operators  PHP Comparison Operators You saw in the last section how to test what is inside of a variable. You used if, else … if, and else. You used the double equals sign (==) to test whether the variable was the same thin… Read More
  • PHP Not Equal To PHP Not Equal To In the previous you saw what Comparison Operators were. In this lessons, we'll explore the Comparison Operator for Not Equal To: !=.So open up your text editor, and add the following script: … Read More
  • PHP Logical Operators As well as the PHP comparison operators you saw earlier, there's also something called Logical Operators. You typically use these when you want to test more than one condition at a time. For example, you could check to… Read More
  • PHP Switch Statements To see how switch statements work, study the following code: <?php $picture ='church'; switch ($picture) { case 'kitten': print('Kitten Picture'); break; case 'church': print('Church Picture'); break; } … Read More

0 comments:

Post a Comment