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, 2785🔥, 0💬
Popular Posts:
What is the standard to map XML repeating elements to JSON values? There seems to be no industry sta...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To cre...