PHP UTF-8 questions - If I create a string in PHP... is it in UTF-8? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:39:59Zhttp://stackoverflow.com/feeds/question/558033http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/558033/php-utf-8-questions-if-i-create-a-string-in-php-is-it-in-utf-82PHP UTF-8 questions - If I create a string in PHP... is it in UTF-8? Keith Palmer2009-02-17T18:06:58Z2009-03-08T02:53:22Z
<p>In PHP, if I create a string like this: </p>
<pre>
$str = "bla bla here is my string";
</pre>
<p>Will I then be able to use the mbstring functions to operate on that string as UTF8? </p>
<pre>
// Will this work?
$str = mb_strlen($str);
</pre>
<p>Further, if I then have another string that I <em>know</em> is UTF-8 (say it was a POSTed form value, or a UTF-8 string from a database), can I then concatenate these two and not have any problems? </p>
<pre>
// What about this, will this work?
$str = $str . $utf8_string_from_database;
</pre>
http://stackoverflow.com/questions/558033/php-utf-8-questions-if-i-create-a-string-in-php-is-it-in-utf-8/558125#5581254Answer by chazomaticus for PHP UTF-8 questions - If I create a string in PHP... is it in UTF-8? chazomaticus2009-02-17T18:26:44Z2009-02-17T18:31:47Z<p><strong>First question: it depends on what exactly goes in the string.</strong></p>
<p>In PHP (up to PHP5, anyway), strings are just sequences of bytes. There is no implied or explicit character set associated with them; that's something the programmer must keep track of. So, if you only put valid UTF-8 bytes between the quotes (fairly easy if the file itself is encoded as UTF-8), then the string will be UTF-8, and you can safely use mb_strlen() on it.</p>
<p>Also, if you're using mbstring functions, you need to explicitly tell it what character set your string is, either with <a href="http://php.net/manual/en/mbstring.configuration.php#ini.mbstring.internal-encoding" rel="nofollow">mbstring.internal_encoding</a> or as the last argument to any mbstring function.</p>
<p><strong>Second question: yes, with caveats.</strong></p>
<p>Two strings that are both independently valid UTF-8 can be safely byte-wise concatenated (like with PHP's <code>.</code> operator) and still be valid UTF-8. However, you can never be sure, without doing some work yourself, that a POSTed string is valid UTF-8. Database strings are a little easier, if you carefully set the connection character set, because most DBMSs will do any conversion for you.</p>
http://stackoverflow.com/questions/558033/php-utf-8-questions-if-i-create-a-string-in-php-is-it-in-utf-8/558139#5581390Answer by Peter Bailey for PHP UTF-8 questions - If I create a string in PHP... is it in UTF-8? Peter Bailey2009-02-17T18:28:59Z2009-02-17T18:28:59Z<p>Make sure your default_charset directive is set to UTF-8 before any of this execution occurs.</p>
<p>Either modify the php.ini directly or do it at runtime with</p>
<pre><code><?php
ini_set( 'default_charset', 'UTF-8' );
</code></pre>
http://stackoverflow.com/questions/558033/php-utf-8-questions-if-i-create-a-string-in-php-is-it-in-utf-8/558142#5581423Answer by Ilya Birman for PHP UTF-8 questions - If I create a string in PHP... is it in UTF-8? Ilya Birman2009-02-17T18:29:14Z2009-02-18T08:33:08Z<p>If your source code is in UTF-8, then the string is in UTF-8, if not — it’s not. Since your example string is english-only, it is valid UTF-8.</p>
<p>PHP doesn’t itself know about charsets. If you pass stuff to mb* function, it treats it as an UTF-8 string.</p>
<p>Concatenation must work fine no matter what, if I understand UTF-8 right :-) Just make sure <em>both</em> strings are UTF-8, otherwise you will get <em>strange</em> string as a result.</p>