History log of /PHP-8.1/ext/standard/php_string.h (Results 126 – 150 of 163)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 045acafc 23-Jun-2001 Hartmut Holzgraefe

@added optional suffix removal parameter to basename() (Hartmut)
added optional suffix removal parameter to basename()
this makes it more simmilar to the basename command

Revision tags: PRE_GRANULAR_GARBAGE_FIX, php-4.0.6, php-4.0.6RC4, php-4.0.6RC3, php-4.0.6RC2, php-4.0.6RC1, php-4.0.5, php-4.0.5RC8, php-4.0.5RC7, php-4.0.5RC6, php-4.0.5RC5, php-4.0.5RC4, php-4.0.5RC3, php-4.0.5RC2
# 3b8140e4 17-Mar-2001 Stephen van Egmond

fixed a (C++) warning about implicit conversion from void*

Revision tags: php-4.0.5RC1
# eb6ba01d 26-Feb-2001 Andi Gutmans

- Fix copyright notices with 2001

# 457888ac 17-Jan-2001 Sean Bright

Put these back where they belong. They weren't necessary unless ZTS and
HAVE_LOCALECONV were both defined.

# a588d655 17-Jan-2001 Sean Bright

Added string comparison function strcoll(). It uses the current locale to
do the comparisons.
@- Added localeconv() and strcoll() functions for localization. (Sean)

# 0592feb2 15-Jan-2001 Zeev Suraski

Nuke a couple of warnings

# 40f35242 14-Jan-2001 Sean Bright

Added localeconv() function. Operates similarly to localeconv() defined in
locale.h. Should work well under non-ZTS as well as ZTS.

Revision tags: php-4.0.4pl1, php-4.0.4pl1RC2
# 0afcb03d 09-Jan-2001 Rui Hirokawa

added iconv extension.

# 63689331 08-Jan-2001 Rui Hirokawa

added iconv_set_encoding() to change the encoding setting.

# 517b81ad 08-Jan-2001 Rui Hirokawa

added a output handler function ob_iconv_handler which tranforms output encoding using iconv().

Revision tags: php-4.0.4pl1RC1, php-4.0.4REL
# 6e1e78d1 15-Dec-2000 Stig Bakken

@Added iconv() function (using libc or libiconv) (Stig)

Revision tags: php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4, php-4.0.4RC3, php-4.0.3, php-4.0.3RC2, php-4.0.3RC1
# 1cc3e6b5 27-Sep-2000 Sascha Schumann

Move php_memnstr to the header file, so that the function body is available
in all compilation units (note the static linkage).

# 0b9a78cb 10-Sep-2000 Sterling Hughes

@- Added the pathinfo() function. (Sterling)

Revision tags: php-4.0.2, PRE_LIBMYSQL_REVERT, php-4.0.2RC1, PRE_FILE_COMPILE_API_CHANGE
# 83513d95 24-Jul-2000 David Croft

Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.
Added a few RCS $Id$ tags.

# Note: I have avoided changing any .h files if the corresponding .c file
# had not alr

Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.
Added a few RCS $Id$ tags.

# Note: I have avoided changing any .h files if the corresponding .c file
# had not already been changed as I am not sure if there are any legal
# issues here. So some extensions still have PHP 3 headers.

show more ...

# 8dd1fdb1 22-Jul-2000 David Croft

wordwrap function from Chris Russel <russel@yorku.ca>
differences from his patch:
- wordwrap width and wrap-string now optional parameters
(default to 75 and "\n" respectively)
-

wordwrap function from Chris Russel <russel@yorku.ca>
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)

show more ...

# 885e40db 08-Jul-2000 Andrei Zmievski

@- Updated str_pad() to be able to pad on left/right/both sides. (Andrei)

Revision tags: PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# cd754d78 03-Jul-2000 Sascha Schumann

Rename macros which begin with underscore to appropiate macros. The general
rule is:

macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`

Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC, PRE_EIGHT_BYTE_ALLOC_PATCH
# b928bdce 06-Jun-2000 Andrei Zmievski

@- Added str_pad() for padding a string with an arbitrary string on left or
@ right. (Andrei)

Added str_pad() for padding a string with an arbitrary string on left or right.

#

@- Added str_pad() for padding a string with an arbitrary string on left or
@ right. (Andrei)

Added str_pad() for padding a string with an arbitrary string on left or right.

# With all those macros, the code is starting to eerily resemble Perl's guts.

show more ...

# 0b7fd17c 06-Jun-2000 Clayton Collie

Added sscanf() function.

# e191baa1 24-May-2000 Hartmut Holzgraefe

php_basename() prototype changed according to latest changes in string.c

# 7182e722 23-May-2000 Rasmus Lerdorf

Need a PHPAPI version of basename for some stuff I am working on.
Also fixed a bug along the way in the basename function. If it
was fed something like "filename.ext/////" it would return th

Need a PHPAPI version of basename for some stuff I am working on.
Also fixed a bug along the way in the basename function. If it
was fed something like "filename.ext/////" it would return the string
with all the slashes whereas if you fed it "/path/filename.ext////" it
would get it right.
@ Fixed basename() bug where "file.ext///" would not return the same
@ as "/path/file.ext///" (Rasmus)

show more ...

# 4571d8dd 23-May-2000 Hartmut Holzgraefe

name changed from levdist() to levenshtein()
(although i bet we'll get a levenstein() alias some day)

# 0eb51100 23-May-2000 Hartmut Holzgraefe

added function "int levdist(string str1, string str2)"
that will calculate the Levenshtein distance between two
strings (faster and possibly more accurate than similar_text())

# 78cec9f3 23-May-2000 Hartmut Holzgraefe

again (due to feature request in bug id #3251)
added optional 3rd parameter 'limit' to explode() as in split()

Revision tags: php-4.0.0
# eb7979ab 20-May-2000 Hartmut Holzgraefe

patch to explode (bug id #3251) suspended till 4.0.1

1234567