Possible Duplicate:
Detecting whether a PHP variable is a reference / referenced
I am wondering if there is a function that will tell me if a variable is a reference variable. If there is not a specific function, is there a way to determine if it is a reference variable?
You can determine this using
debug_zval_dump. See my answer on another question.