You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
If i use you example I get an error message at the point where the function is supposed to return the Array. That error says "Invalid array access"
You cannot return an "Array". The example is flawed. It would make more sense like this:
Please note however, that the array is passed by reference, so that the original array is being directly modified!
If you need to keep the original and the "returned array" separate, you will have to make a copy of it before calling the function.