History log of /PHP-7.3/ext/standard/php_string.h (Results 101 – 125 of 163)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: RELEASE_1_0b1
# b7917def 11-Oct-2002 Ilia Alshanetsky

Fixed bug #19865


Revision tags: php-4.3.0pre1
# a75eb9c4 09-Oct-2002 Ilia Alshanetsky

Optimizations to various php string functions substr_count(), strrev(),
nl2br(), php_addslashes() and php_memnstr().


Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003
# fc46a46b 25-Sep-2002 Andrey Hristov

str_shuffle() function added. Like shuffle() for arrays - however the
algorithm for creating the permutation is quite simple. More like
the implementation of shuffle() for 4.2.1 .


Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2, php-4.2.3RC1
# 9d348ea8 20-Aug-2002 Wez Furlong

Implement filter API for streams.

Filters can be stacked onto a stream; more details will follow in docs and
on php-dev.

Implement "string.rot13" filter

Allows the foll

Implement filter API for streams.

Filters can be stacked onto a stream; more details will follow in docs and
on php-dev.

Implement "string.rot13" filter

Allows the following script:

$fp = fopen("file.txt", "r");
stream_filter_prepend($fp, "string.rot13");

// File contents will be subject to a rot13 transformation before
// being output.
fpassthru($fp);
fclose($fp);

show more ...


Revision tags: dev
# e5fa36ee 02-Aug-2002 Hartmut Holzgraefe

added money_format() function
this is similar to C-libs strfmon(), using the same format string
semantics but a different function prototype, so i decided to
give it a more speaking name

added money_format() function
this is similar to C-libs strfmon(), using the same format string
semantics but a different function prototype, so i decided to
give it a more speaking name similar to number_format()

show more ...


Revision tags: php-4.2.2
# 2f8dc7a4 13-Jul-2002 foobar

- Made the trim functions use same base function. (less code :)
- Renamed php_trim2 -> php_trim (not used anyplace else, yet)
- Made php_trim abit more usable for external use. (not necessary

- Made the trim functions use same base function. (less code :)
- Renamed php_trim2 -> php_trim (not used anyplace else, yet)
- Made php_trim abit more usable for external use. (not necessary to use
zvals with it anymore)

show more ...


Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt
# fd348068 03-Jul-2002 Frank M. Kromann

Adding missing prototype


Revision tags: php-4.3.0dev_zend2_alpha2, php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2, php-4.2.1RC1, php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1
# 3dbde958 20-Mar-2002 Wez Furlong

Make state parameter of php_strip_tags passed by reference.
Move state tracking to stream structure.


Revision tags: help
# 90613d22 28-Feb-2002 Sebastian Bergmann

Maintain headers.


Revision tags: php-4.1.2, BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH, php-4.1.1, PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog
# 38933514 11-Dec-2001 Sebastian Bergmann

Update headers.


Revision tags: php-4.1.0, php-4.1.0RC5, php-4.1.0RC4, php-4.1.0RC3, php-4.1.0RC2, POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1, php4, php-4.0.7RC3, POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS
# f61dfce3 23-Sep-2001 Jeroen van Wolffelaar

Make chop the alias and rtrim the main function, in order to get automagically
generated alias-listings correct.


# 61d4f7fe 09-Sep-2001 Derick Rethans

- Really fix nl2br now... it's actaulyl faster now


Revision tags: php-4.0.7RC2
# 536c9696 04-Sep-2001 Sterling Hughes

update php_trim as well...


# c661449e 04-Sep-2001 Sterling Hughes

fix crash bug


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# c0404f46 11-Aug-2001 Zeev Suraski

Whitespace


Revision tags: PRE_METHOD_DEREFERENCE_PATCH, BEFORE_PARAM_PARSING_CHANGE
# c4555f9f 07-Aug-2001 Andrei Zmievski

@- Added vprintf() and vsprintf() functions that allow passing all arguments
@ after format as an array. (Andrei)


Revision tags: PRE_ENGINE2_SPLIT
# 23b9300f 06-Aug-2001 Sascha Schumann

more tsrm cleanup


# b4f31ece 05-Aug-2001 Sebastian Bergmann

Fix ZTS build.


# 2e6850a9 05-Aug-2001 Jeroen van Wolffelaar

Added proto for php_charmask in the .h


# ea79632b 04-Aug-2001 Sebastian Bergmann

Fix Win32 (and maybe other ZTS) builds.


# f0bcaf39 03-Aug-2001 Jeroen van Wolffelaar

Un-revert patch


# f6979a7d 03-Aug-2001 Jeroen van Wolffelaar

Reverting last patch, segfaults.


# c2150f70 03-Aug-2001 Jeroen van Wolffelaar

- Added new parameter to [l|r]trim, to specify _what_ to trim
@- Added optional second parameter to trim, chop and ltrim. You can
@ now specify which characters to trim (jeroen)


Revision tags: PRE_TSRM_MERGE_PATCH
# 09ce807b 21-Jul-2001 Sascha Schumann

Drop memchr() in php_memnstr in favor of manual scanning. This reduces
the complexity of the function and is about 20% faster on Linux/x86.


# f1364ebf 04-Jul-2001 Wez Furlong

(PHP nl_langinfo) Added function when provided by OS
(PHP htmlentities, htmlspecialchars) Uses nl_langinfo to determine charset
@- Added nl_langinfo() (when OS provides it) that returns local

(PHP nl_langinfo) Added function when provided by OS
(PHP htmlentities, htmlspecialchars) Uses nl_langinfo to determine charset
@- Added nl_langinfo() (when OS provides it) that returns locale
information. (Wez Furlong)
# There are a lot of constants used by nl_langinfo; should we do something
# along the lines of what we do for syslog?

show more ...


1234567