in reply to Re: How do I determine the type of a reference?
in thread How do I determine the type of a reference?
use Scalar::Util 'reftype'; $a=\$b; print reftype($a),"\n"; #SCALAR print ref($a),"\n"; #SCALAR bless $a, "BOGUS"; print reftype($a),"\n"; #SCALAR print ref($a),"\n"; #BOGUS
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Answer: How do I tell what type of structure a given reference points to?
by Mr. Muskrat (Canon) on Sep 18, 2003 at 17:57 UTC |