14,974
edits
(Created page with " == PHP == Using the [https://www.php.net/manual/en/function.substr.php PHP: substr] function<ref>[https://www.php.net/manual/en/function.substr.php PHP: substr - Manual]</re...") |
mNo edit summary |
||
| Line 5: | Line 5: | ||
<pre> | <pre> | ||
echo | |||
$string = 'apple'; | |||
if (function_exists('mb_substr')) { | |||
echo mb_substr($string, 0, 1, 'UTF-8'); | |||
} | |||
echo substr($string, 0, 1); | |||
// return 'a' | // return 'a' | ||
</pre> | </pre> | ||