Tools, FAQ, Tutorials:
Defining an Array Argument as Reference in PHP
Can You Define an Array Argument as a Reference Type? in PHP?
✍: FYIcenter.com
You can define an array argument as a reference type in the function definition. This will automatically convert the calling arguments into references. Here is a PHP script on how to define an array argument as a reference type:
<?php
function ref_shrink(&$array) {
array_splice($array,1);
}
$numbers = array(5, 7, 6, 2, 1, 3, 4, 2);
print("Before shrinking: ".join(",",$numbers)."\n");
ref_shrink($numbers);
print("After shrinking: ".join(",",$numbers)."\n");
?>
This script will print:
Before shrinking: 5,7,6,2,1,3,4,2 After shrinking: 5
⇒ Returning an Array from a Function in PHP
⇐ Passing Arrays by References to Functions in PHP
2016-12-18, ∼3273🔥, 0💬
Popular Posts:
What properties and functions are supported on requests.models.Response objects? "requests" module s...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...