summaryrefslogtreecommitdiff
path: root/ext/mbstring/mbstring.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Allow null as a default value for length in mb_substr() and mb_strcut()Lars Strojny2012-09-021-4/+12
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* A better fix for #55817 (thanks to bjori)Xinchen Hui2011-09-301-1/+1
|
* Fix wrong codes #55817Xinchen Hui2011-09-301-1/+1
|
* added mb_ereg_replace_callback().Rui Hirokawa2011-09-251-0/+7
|
* fixed optional argument.Rui Hirokawa2011-09-121-1/+1
|
* fixed test case failures.Rui Hirokawa2011-09-111-4/+13
|
* 2nd arguments is necessary in mb_parse_str because register_globals was ↵Rui Hirokawa2011-09-081-3/+3
| | | | removed in PHP 5.4.
* Remove unused variablesPierrick Charron2011-08-071-1/+1
|
* added version number of libmbfl.Rui Hirokawa2011-08-021-0/+5
|
* - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
|
* added numeric entities encode/decode in hex format.Rui Hirokawa2011-07-181-3/+11
|
* - Restore basename in filename on non Windows OSFelipe Pena2011-06-121-6/+13
|
* Fixed multibyte related issuesDmitry Stogov2011-03-141-5/+6
|
* Fix ZTS build.Moriyoshi Koizumi2011-03-061-4/+4
|
* Fix zend.multibyte oddities. Hope this will address all the known problems.Moriyoshi Koizumi2011-03-061-170/+83
|
* Fix crash with mbstring, this probably isn't the correct behaviour but ↵Scott MacVicar2011-01-271-1/+1
| | | | | | | | | | 272/276 of the tests pass after this. When mbstring.language is unset, it ends up being mbfl_no_language_neutral and there is no default when setting the encoding. internal_encoding and current_internal_encoding then end up being null.
* - Year++Felipe Pena2011-01-011-1/+1
|
* fixed compile error with VS2008.Rui Hirokawa2010-12-201-2/+2
|
* WSMoriyoshi Koizumi2010-12-191-25/+25
|
* * Refactor zend_multibyte facility.Moriyoshi Koizumi2010-12-191-601/+437
| | | | | Now mbstring.script_encoding is superseded by zend.script_encoding.
* Removed compile time dependency from ext/mbstringDmitry Stogov2010-12-081-9/+108
|
* Added multibyte suppport by default. Previosly php had to be compiled with ↵Dmitry Stogov2010-11-241-39/+22
| | | | --enable-zend-multibyte. Now it can be enabled or disabled throug zend.multibyte directive in php.ini
* - Fixed bug #52931 (strripos not overloaded with function overloading enabled)Felipe Pena2010-09-271-1/+1
|
* fixed compilation error.Rui Hirokawa2010-09-191-1/+1
|
* Fixed bug #52681 (mb_send_mail() appends an extra MIME-Version header).Adam Harvey2010-08-251-3/+5
|
* Reduced overhead of request startupDmitry Stogov2010-07-081-1/+4
|
* Reduced overhead of ext/mbstring initializationDmitry Stogov2010-07-051-29/+13
|
* Removed safe_modeKalle Sommer Nielsen2010-04-261-5/+0
| | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* Removed register_globalsKalle Sommer Nielsen2010-04-211-1/+0
|
* Added a number of small performance tweaks and optimizationsDmitry Stogov2010-04-201-2/+2
| | | | | | | . ZEND_RECV now always has IS_CV as its result . ZEND_CATCH now has to be used only with constant class names . ZEND_FETCH_DIM_? may fetch array and dimension operans in a different order
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - Fixed bug #49354 (mb_strcut() cuts wrong length when offset is within aMoriyoshi Koizumi2009-09-231-4/+0
| | | | | | | | multibyte character). (This bug was introduced by the commit by r202895. Please double-check the specification of the function you are going to *fix*.)
* MFH: fix compile warningsAntony Dovgal2009-05-271-0/+2
|
* - Fixed bug #48200 (compile failure with mbstring.c when ↵Jani Taskinen2009-05-101-10/+13
| | | | --enable-zend-multibyte is used)
* - Sync with HEAD (just reorder to match HEAD order)Jani Taskinen2009-04-201-163/+163
|
* - MFH: Fix a bug that mbstring.internal_encoding doesn't take effect withinMoriyoshi Koizumi2009-03-151-8/+5
| | | | | the request encoding converter.
* Improve parameter parsing codeIlia Alshanetsky2009-03-061-5/+5
|
* - MFH: Add an entry for http_output_conv_mimetypes to the output ofMoriyoshi Koizumi2009-02-171-0/+7
| | | | | mb_get_info(). (patch by T. Komura, thanks!)
* - Forgot to include these files.Moriyoshi Koizumi2009-02-151-4/+4
|
* - MFH: fix Bug #45923 (mb_st[r]ripos() offset not handled correctly)Moriyoshi Koizumi2009-02-141-20/+31
|
* Improved param parsingIlia Alshanetsky2009-02-111-6/+5
|
* Initialize optional varIlia Alshanetsky2009-02-091-1/+1
|
* MFB Fix bug #47245 - Double free in mb_detect_encoding()Scott MacVicar2009-01-291-0/+2
|
* fix memleaks correctly and make valgrind happyAntony Dovgal2009-01-051-24/+18
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Bug #46763 (mb_stristr() wrong output when needle does not exist) ↵Felipe Pena2008-12-301-1/+2
| | | | (patch by Henrique M. Decaria)
* - MFH: Fixed memory leaksFelipe Pena2008-12-271-0/+4
|
* - MFH: Fixed memory leakFelipe Pena2008-12-251-0/+2
|