(1) I want to know what is the difference between call by value and call by reference in php. PHP works on call by value or call by reference?
php
(2) And a
Call by value: Passing the variable value directly and it will not affect any global variable.
Call by reference: Passing the address of a variable and it will affect the variable.