Variables can also be declared within a function as static. The static variable is available only in the scope of the function, but the value is not lost between function calls. Consider simple function count( ) that declares a static counter variable $count: function count() The first time the function count( ) is called, the static variable$countis set to zero, and incremented. The value of$countis maintained for subsequent calls. Passing Variables to FunctionsBy default, variables are passed to functions by value, not by reference. Consider an example: function doublevalue($var) This produces the output: $variable is: 5 The parameter$variable that is passed to the function doublevalue( ) isn’t changed by the function. What actually happens is that the value 5 is passed to the function, doubled to be 10, and the result lost forever! The value is passed to the function, not the variable itself. Passing parameters by referenceAn alternative to returning a result or using a global variable is to pass a reference to a variable as a parameter to the function. This means that any changes to the variable within the function affect the original variable. Consider this example: function doublevalue(&$var) This prints: $variable is: 10 The only difference between this example and the previous one is that the parameter$varto the function doublevalue( ) is prefixed with an ampersand character:&$var. The effect is a bit to hard to understand unless one learns low-level computer languages, but it means that the parameter doesn’t contain the value of the variable—instead, it points to where the variable is stored in memory. The result is that changes to$varin the function affect the original variable$variableoutside the function. If a parameter is defined as a reference, you can’t pass the function a literal expression as that parameter because the function expects to modify a variable. PHP reports an error when the following is executed: function doublevalue(&$var) Referencing with the ampersand can also be used when assigning variables, which allows the memory holding a value to be accessed from more than one variable. This example illustrates the idea: $x = 10; This fragment prints: 11 Because$yis a reference to$x, any change to$yaffects$x. In effect, they are the same variable. The reference$ycan be removed with: unset($y); This has no effect on$xor its value. Assigning variables with a reference to another variable can also be done with the reference assignment operator=& with exactly the same outcome as shown in the previous example. The following fragment sets up three variables—$x,$y, and $z—that all point to the same value: $x = 10; PHP allows functions to be defined with default values for parameters. A default value is simply supplied in the parameter list using the = sign. Consider the heading( )function described earlier; here we modify the function definition to include a default value: function heading($text, $headingLevel = 2) When calls are made to the heading( ) function, the second argument can be omitted, and the default value 2 is assigned to the$headingLevelvariable. Reusing Functions with Include and Require FilesIt’s valuable to be able to reuse functions in many scripts. PHP provides the include and require statements that allow you to reuse PHP scripts containing statements, function definitions, and even static HTML. If you decide to reuse the bold( ) function from Example 2-3 in more than one script, you can store it in a separate include file. For example, you can create a file called functions.inc and put the bold( ) function in the file: <?php
You can then useincludeto provide access to the bold( ) function: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" Include files can also be used to incorporate resources such as static HTML or a set of variable initializations. The following example could be written to the file release.inc and included in all the scripts of an application: <!-- Beta Release Only --> Bothincludeandrequire read external include files, the only difference is in the behavior when a file can’t be included:includeprovides a warning whereasrequireterminates the script with a fatal error. When you are including a file that contains user-defined functions, or other mandatory content, you should use therequiredirective. We use therequiredirective in all of our code. Theincludeandrequirestatements can be treated in the same way as other statements. For example, you can conditionally include different files using the following code fragment: if ($netscape == true) The file is included only if theincludestatement is executed in the script. The braces used in this example are necessary: if they are omitted, the example doesn’t behave as expected. Scripts can include more than one include file, and include files can themselves include other files. Writing scripts that useincludeorrequirecan lead to an include file being included and evaluated twice. To avoid problems with variable reassignments and function redefinitions, PHP provides theinclude_onceorrequire_onceconstructs statements that ensure that the contents of the file are included only once.
blog comments powered by Disqus |
|
|
|
|
|
|
|