PHP $string{0} vs. $string[0]; - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:32:47Zhttp://stackoverflow.com/feeds/question/335205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335205/php-string0-vs-string05PHP $string{0} vs. $string[0];popthestack2008-12-02T19:50:45Z2008-12-02T19:54:12Z
<p>In PHP you can access characters of strings in a few different ways, one of which is substr(). You can also access the Nth character in a string with curly or square braces, like so:</p>
<pre><code>$string = 'hello';
echo $string{0}; // h
echo $string[0]; // h
</code></pre>
<p>My question is, is there a benefit of one over the other? What's the difference between {} and []?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/335205/php-string0-vs-string0/335213#33521312Answer by Owen for PHP $string{0} vs. $string[0];Owen2008-12-02T19:54:12Z2008-12-02T19:54:12Z<p>use <code>$string[0]</code>, the other method (braces) is being deprecated in PHP6 (<a href="http://php.net/string" rel="nofollow">src</a>)</p>
<blockquote>
<p>Note: Strings may also be accessed using braces, as in $str{42}, for the same purpose. However, this syntax is deprecated as of PHP 6. Use square brackets instead.</p>
</blockquote>