Tools, FAQ, Tutorials:
Passing Variables by References in PHP
How To Pass Variables By References? in PHP?
✍: FYIcenter.com
You can pass a variable by reference to a function by taking the reference of the original variable, and passing that reference as the calling argument. Here is a PHP script on how to use pass variables by references:
<?php function swap($a, $b) { $t = $a; $a = $b; $b = $t; } $x = "PHP"; $y = "JSP"; print("Before swapping: $x, $y\n"); swap(&$x, &$y); print("After swapping: $x, $y\n"); ?>
This script will print:
Before swapping: PHP, JSP After swapping: JSP, PHP
As you can see, the function modified the original variable.
Note that call-time pass-by-reference has been deprecated. You need to define arguments as references. See next tip for details.
⇒ Defining an Argument as a Reference in PHP
⇐ Variables Are Passed by Values in PHP
2016-12-24, 1932🔥, 0💬
Popular Posts:
What properties and functions are supported on requests.models.Response objects? "requests" module s...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...