What does & beside argument mean in function declaration of e.g. asort()?
It means that the argument is passed by reference and the function will likely modify it corresponding to the documentation. You can pass only variables this way and you don’t need to pass them with & in function call.





