summaryrefslogtreecommitdiffstats
path: root/system/core/compat
AgeCommit message (Collapse)AuthorFilesLines
2014-02-19Add compatibility layer for array_column(), array_replace(), ↵Andrey Andreev1-0/+246
array_replace_recursive()
2014-02-18Don't load password hashing compat for HHVMAndrey Andreev1-1/+1
2014-02-18Add an ext/hash compatibility layer (just hash_pbkdf2(), for now)Andrey Andreev1-0/+144
2014-02-13[ci skip] Add index.html to system/core/compat/Andrey Andreev1-0/+10
2014-02-13Introducing compatibility layersAndrey Andreev2-0/+357
- Limited support for mbstring (mb_strlen(), mb_strpos(), mb_substr() only) via iconv. Falls back to regular strlen(), strpos(), substr() if iconv is not available. - Password hashing, dependant on CRYPT_BLOWFISH (2y version, available since PHP 5.3.7) availability.