Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix ZTS build (broken by iconv-related changes). | Sascha Schumann | 2001-01-08 | 1 | -0/+2 | |
| | ||||||
* | added iconv_set_encoding() to change the encoding setting. | Rui Hirokawa | 2001-01-08 | 1 | -1/+27 | |
| | ||||||
* | added a output handler function ob_iconv_handler which tranforms output ↵ | Rui Hirokawa | 2001-01-08 | 1 | -25/+70 | |
| | | | | encoding using iconv(). | |||||
* | Make nl2br() output <br /> instead of <br> to be XHTML compliant. | Jon Parise | 2000-12-28 | 1 | -1/+1 | |
| | | | | | Bug: 8390 | |||||
* | Heads up people! | Zeev Suraski | 2000-12-22 | 1 | -2/+1 | |
| | | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok... | |||||
* | @- Changed setlocale() to use LC_* constants. (Jani) | foobar | 2000-12-21 | 1 | -22/+32 | |
| | ||||||
* | Don't do anything, if the input string has a length of 0. | Sascha Schumann | 2000-12-17 | 1 | -0/+4 | |
| | | | | | PR: #7686 | |||||
* | @Added iconv() function (using libc or libiconv) (Stig) | Stig Bakken | 2000-12-15 | 1 | -0/+53 | |
| | ||||||
* | Don't define LC_MESSAGES, if LC_MESSAGES is not defined. | Sascha Schumann | 2000-12-14 | 1 | -1/+1 | |
| | | | | | PR: #8259 | |||||
* | Fix crash when first argument to strtr is empty | Stanislav Malyshev | 2000-12-13 | 1 | -0/+5 | |
| | ||||||
* | Fix Win32 build | Zeev Suraski | 2000-12-11 | 1 | -1/+3 | |
| | ||||||
* | Added constants for locale categories. | foobar | 2000-12-10 | 1 | -0/+11 | |
| | ||||||
* | Fixing bug 8061. Position counter starts a 0 but was compared with length. | Frank M. Kromann | 2000-12-01 | 1 | -1/+1 | |
| | | | | | oops. the fix should be made twice. | |||||
* | Fixing bug 8061. Position counter starts a 0 but was compared with length. | Frank M. Kromann | 2000-12-01 | 1 | -1/+1 | |
| | ||||||
* | removing '{' was certainly not intended | Sascha Schumann | 2000-11-22 | 1 | -1/+1 | |
| | ||||||
* | Don't access opt, if opt was not set. | Sascha Schumann | 2000-11-22 | 1 | -3/+3 | |
| | ||||||
* | Fix bug #7667. | Andrei Zmievski | 2000-11-06 | 1 | -5/+3 | |
| | ||||||
* | Let strtr() use smart_str to reduce complexity | Sascha Schumann | 2000-10-12 | 1 | -23/+10 | |
| | ||||||
* | Rewrite php_str_to_str using the smart_str API. | Sascha Schumann | 2000-10-12 | 1 | -43/+19 | |
| | | | | | | | | This removes much complexity from the function. Speed is improved by pre-allocating memory instead of reallocating the buffer each time the pattern is found. | |||||
* | - Fix dirname() | Andi Gutmans | 2000-10-03 | 1 | -29/+47 | |
| | ||||||
* | - Fix VC++ warning | Andi Gutmans | 2000-10-03 | 1 | -1/+2 | |
| | ||||||
* | Move php_memnstr to the header file, so that the function body is available | Sascha Schumann | 2000-09-27 | 1 | -14/+0 | |
| | | | | | in all compilation units (note the static linkage). | |||||
* | Add empty string checks to add?slashes | Stanislav Malyshev | 2000-09-17 | 1 | -0/+14 | |
| | ||||||
* | reversed chomp alias addition as per Andi Gutmans' request | Daniel Beckham | 2000-09-12 | 1 | -4/+0 | |
| | ||||||
* | added chomp() alias for chop() for us Perl purists. | Daniel Beckham | 2000-09-12 | 1 | -0/+4 | |
| | ||||||
* | Make parse_str always register globals with 1 argument and never - | Stanislav Malyshev | 2000-09-12 | 1 | -5/+6 | |
| | | | | | with 2 arguments | |||||
* | A quick attempt to make parse_str($str,$arr) not register globals. | Stanislav Malyshev | 2000-09-12 | 1 | -0/+3 | |
| | ||||||
* | - Fix for bug #6673 | Derick Rethans | 2000-09-11 | 1 | -20/+37 | |
| | | | | | | | - Added a "cut" option to wordwrap (as per feature request #6429) @ Added an optional parameter to wordwrap that cuts a string if the length of a word is longer than the maximum allowed with (Derick) | |||||
* | (PHP parse_str) ParameterPassedByReference() check is not necessary. | Andrei Zmievski | 2000-09-11 | 1 | -10/+0 | |
| | ||||||
* | Add additional parameter to parse_str for saving result (thanks to | Stanislav Malyshev | 2000-09-11 | 1 | -5/+32 | |
| | | | | | | John Bafford <dshadow@zort.net>) @ Added second parameter for parse_str to save result (John Bafford) | |||||
* | (PHP pathinfo) Fixed more typos. | Andrei Zmievski | 2000-09-11 | 1 | -3/+3 | |
| | ||||||
* | (PHP pathinfo) Fixed leaks, saved some memory allocations, added | Andrei Zmievski | 2000-09-11 | 1 | -25/+29 | |
| | | | | | more error checking. | |||||
* | @- Added the pathinfo() function. (Sterling) | Sterling Hughes | 2000-09-10 | 1 | -4/+71 | |
| | ||||||
* | str_repeat() should be able to handle multipliers of 0 gracefully, IMHO ... | Colin Viebrock | 2000-09-05 | 1 | -2/+6 | |
| | | | | | Hope no one disagrees. :) | |||||
* | #Its fixed this time, no really. | Sterling Hughes | 2000-08-18 | 1 | -1/+1 | |
| | ||||||
* | Fix #6234 | Sterling Hughes | 2000-08-18 | 1 | -0/+1 | |
| | ||||||
* | Fix chunk_split (#6208) | Stanislav Malyshev | 2000-08-17 | 1 | -3/+7 | |
| | ||||||
* | Changed some protos. | Egon Schmid | 2000-08-06 | 1 | -3/+3 | |
| | ||||||
* | Fix bug in strip_tags function as per bug #5857 | Rasmus Lerdorf | 2000-07-30 | 1 | -0/+1 | |
| | | | | | @ Fix bug in strip_tags function as per bug #5857 (Rasmus) | |||||
* | Protos fixed. | Egon Schmid | 2000-07-26 | 1 | -3/+3 | |
| | ||||||
* | wordwrap function from Chris Russel <russel@yorku.ca> | David Croft | 2000-07-22 | 1 | -0/+138 | |
| | | | | | | | | | | | | differences from his patch: - wordwrap width and wrap-string now optional parameters (default to 75 and "\n" respectively) - wordwrap_byte is now just an automatic special case of wordwrap - Zend API compliant @- Added new function "wordwrap" to wordwrap long strings from Chris @ Russel <russel@yorku.ca> (David Croft) | |||||
* | (php_addslashes) Fixed stop condition - it should only take into account | Andrei Zmievski | 2000-07-21 | 1 | -1/+2 | |
| | | | | | the length of the string, not the characters. | |||||
* | fix for bug #5707 | Hartmut Holzgraefe | 2000-07-20 | 1 | -1/+7 | |
| | ||||||
* | Shutup a gcc warning | Zeev Suraski | 2000-07-18 | 1 | -1/+1 | |
| | ||||||
* | Fix crash in stripcslashes("") (#5628) | Stanislav Malyshev | 2000-07-17 | 1 | -1/+4 | |
| | ||||||
* | Fixed other protos. | Egon Schmid | 2000-07-09 | 1 | -3/+3 | |
| | ||||||
* | Eliminated a typo. | Egon Schmid | 2000-07-08 | 1 | -1/+1 | |
| | ||||||
* | @- Updated str_pad() to be able to pad on left/right/both sides. (Andrei) | Andrei Zmievski | 2000-07-08 | 1 | -22/+62 | |
| | ||||||
* | (implode), (strtr) no longer touch the internal array-pointer. | Thies C. Arntzen | 2000-06-18 | 1 | -10/+12 | |
| | ||||||
* | - Fix a couple of wranings in the FTP code and in parsedate.y | Zeev Suraski | 2000-06-17 | 1 | -1/+1 | |
| | | | | | | - Be safer with LC_MESSAGES - Align with the latest Zend change in call_user_function_ex() |