InterviewSolution
| 1. |
Can You Define An Argument As A Reference Type? |
|
Answer» You can define an 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 argument as a reference type: You can define an 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 argument as a reference type: |
|