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, 1580👍, 0💬
Popular Posts:
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...