I have a function that returns an array. In PHP arrays are returned by value by default, unless the & operator is used. I assume when returning an array from a function by value results in a copy of the array being created. Is it therefore more efficient to return a reference to the array?
Is returning an array by reference from a method more efficient?
110 views Asked by Dan Stevens At
1
There are 1 answers
Related Questions in PHP
- How to add the dynamic new rows from my registration form in my database?
- Issue in payment form gateway
- How to create a facet for WP gridbuilder that displays both parent and child custom fields?
- Function in anonymous Laravel Blade component
- How to change woocomerce or full wordpress currency with value from USD to AUD
- General questions about creating a custom theme Moodle CMS
- How to add logging to an abstract class in php
- error 500 on IIS FastCGI but no clue despite multiple error loggings activated
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Laravel: Using belongsToMany relationship with MongoDB
- window.location.href redirects but is causing problems on the webpage
- Key provided is shorter than 256 bits, only 64 bits provided
- Laravel's whereBetween method not working with two timestamps
- Implementing UUID as primary key in Laravel intermediate table
Related Questions in ARRAYS
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- What does: "char *argv[]" mean?
- How to populate two dimensional array
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- Function is returning undefined but should be returning a matched object from array in JavaScript
- The rules of Conway's Game of Life aren't working in my Javascript version. What am I doing wrong?
- Array related question, cant find the pattern
- Setting the counter (j) for (inner for loop)
- I want to flip an image (with three channels RGB) horizontally just using array slicing. How can I do it with python?
- Numpy array methods are faster than numpy functions?
- How to enter data in mongodb array at specific position such that if there is only 2 data in array and I want to insert at 5, then rest data is null
- How to return array to ArrayPool when it was rented by inner function?
- best way to remove a word from an array in a react app
- Vue display output of two dimensional array
- Undot Array with Wildcards in Laravel
Related Questions in RETURN-BY-REFERENCE
- itk c++ function parameter passing
- PHP return arrays by reference, but also be nullable
- Is there a "return NULL" equivalent for return-by-reference functions?
- Best practice concerning data creating classes
- Chaining return-by-reference calls to access underlying data
- Why is it advantageous to return by reference?
- error: const method that returns an array of pointers by reference
- why "return ref a[0]" doesn't change the original array?
- Dangling reference when returning reference to reference parameter bound to temporary
- Overload operator over and over
- Return object by reference in c++
- Why does a function or method have to return a reference in order to be chained?
- My misconception about pass by and return by reference in C++
- Why can copy elision not optimise all copy operations?
- What is the meaning of assigning to return value of getter taking this pointer by value?
Related Questions in RETURN-BY-VALUE
- Does an implementation that returns fundamental types by value using registers do "temporary materialization"?
- best strategy for ensuring no copies in return by value
- how is a struct returned by value, in terms of assembly language, if that struct is too large to fit in a register?
- Is 1-arg overload of variadic template function useful? Should it used a magic && reference? Is Copy-Elision taking place in this case?
- Why does a function or method have to return a reference in order to be chained?
- C++ copy constructor activation in return-by-vlaue
- Why can copy elision not optimise all copy operations?
- Why doesn't the copy constructor work when I return an automatic variable from function?
- What is the meaning of assigning to return value of getter taking this pointer by value?
- Difference in Copy Elision for Trivial vs. Non-trivial Types
- Returning by value vs rvalue reference
- ctypes wrapper for function returning by value objects of a C++ class with destructor
- c++ : Whats difference in "catching reference in value" vs "catching value in value" during function return?
- ionic 3 typescript : passing object between pages by value
- Reference to r-value ( address of r-value )
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It appears, according to the PHP documentation on Returning References, that the answer is 'No':