Live blogging from SymfonyLive London 2019

This commit is contained in:
Oliver Davies 2019-09-13 17:13:04 +01:00
parent 680c121f5b
commit 7f33dab4a5

View file

@ -604,3 +604,13 @@ It depends. Fine for a 'modest' size. Use a real proxy for larger scale apps, us
### unicode in practice
- MySQL - `utf*_*`. `SET NAMES utf8mb4` for security and storing emojis. Cannot store emojis with `utf8`
### in php
* `mb_*()`
* `iconv_*()`
* `preg_*()`
* `grapheme_*()` `normalizer_*()`
* `symfony/polyfill-*` - pure PHP implementation
* Made a component - **symfony/string**
*