<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1036673" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1036673</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/perl-symbolic-references#comment-1210976</link>
    <description> &lt;p&gt;EXCELLENT, Thanx Abhishek&lt;/p&gt;
 </description>
     <pubDate>Mon, 27 Nov 2006 06:17:05 +0000</pubDate>
 <dc:creator>StuPeas</dc:creator>
 <guid isPermaLink="false">comment 1210976 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/perl-symbolic-references#comment-1210968</link>
    <description> &lt;p&gt;A symbolic reference is really just a string that may be in a scalar variable.  You&#039;re putting another variable&#039;s name in a string, which Perl looks up in the symbol table by default, when you try dereferencing it.&lt;/p&gt;
&lt;p&gt;An analogy could be web browser bookmarks.  When you bookmark a site, your browser normaly stores just the named URL string somewhere, rather than the IP address or indeed whole site.  Every time you load the bookmark (like dereferencing),  it looks up the URL string via DNS (like a symbol table) to get to the site.&lt;/p&gt;
&lt;p&gt;Note that symbolic refs can be problematic much like how bookmarks can be.  A bookmark relies on the domain existing and being reachable, since it doesn&#039;t refer to the site&#039;s content directly.  Similarly, a symbolic reference relies on its referent variable existing, and in scope; whereas a hard ref refers to the data without caring about any other symbols.&lt;/p&gt;
&lt;p&gt;Since symbolic references aren&#039;t as useful or robust as hard references, novices are advised against using symbolic references as a hard ref will usually suffice.  Hence the strict refs directive: it will disable symbolic references.  That is, Perl will stop interpreting string scalars that way when dereferenced.  They&#039;ll just be plain string scalars with no extra meaning.&lt;/p&gt;
&lt;p&gt;I&#039;m not sure I can explain it with any more detail or clarity without repeating what the books and docs say.  No doubt it&#039;s a tricky idea, it can be hard to grasp even if you&#039;ve programmed with references.  It&#039;s often said by computer science educators that pointers (like refs) and recursion are the two most frequently misunderstood fundamental concepts for students of the subject.&lt;/p&gt;
&lt;p&gt;Does that help?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 26 Nov 2006 23:54:24 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1210968 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
