PHP $string{0} vs. $string[0]; - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:32:47Z http://stackoverflow.com/feeds/question/335205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/335205/php-string0-vs-string0 5 PHP $string{0} vs. $string[0]; popthestack 2008-12-02T19:50:45Z 2008-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#335213 12 Answer by Owen for PHP $string{0} vs. $string[0]; Owen 2008-12-02T19:54:12Z 2008-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>