History log of /PHP-8.2/ext/standard/basic_functions.h (Results 176 – 200 of 249)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# eb6ba01d 26-Feb-2001 Andi Gutmans

- Fix copyright notices with 2001

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

added iconv extension.

# 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
# e4ca57bb 18-Dec-2000 Zak Greant

Added is_scalar() function.

Revision tags: php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4
# fe13e4b0 08-Dec-2000 Sterling Hughes

@ Added the call_user_method_array function which allows you to call a method with an
@ arbitrary number of parameters. (Sterling)

Revision tags: php-4.0.4RC3
# 2cc8e2f8 29-Nov-2000 Sterling Hughes

@ Added the is_null() function that will return true if a variable is of
@ type null. (Sterling)

# 0d1bcd48 24-Nov-2000 Sterling Hughes

@ Added the call_user_func_array() function which gives you the ability to
@ call a user function by passing an array of parameters as the second
@ argument.

@ Added the constant() f

@ Added the call_user_func_array() function which gives you the ability to
@ call a user function by passing an array of parameters as the second
@ argument.

@ Added the constant() function which returns the value of a constant given
@ the constant's name.

show more ...

# f52a5906 29-Oct-2000 Zeev Suraski

parse_ini_file() supports a new optional 2nd argument that instructs it
to divide the directives to arrays according to the sections in which they
reside

Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1
# 4b3fb7b0 19-Sep-2000 Sascha Schumann

Add new URL scanner. This version is up to 20% faster. It will be
enabled by default once I'm sure that it works in every case.

To enable it, apply s/url_adapt_ext/url_adapt_ext_ex/ to s

Add new URL scanner. This version is up to 20% faster. It will be
enabled by default once I'm sure that it works in every case.

To enable it, apply s/url_adapt_ext/url_adapt_ext_ex/ to session.c

show more ...

# 6c4cb4c0 09-Sep-2000 Zeev Suraski

Security related updates:
- Introduce php_open_temporary_file(), in place of tempnam(). Still
needs testing under UNIX (mkstemp()), works reliably under Windows now.
- Reimplement the

Security related updates:
- Introduce php_open_temporary_file(), in place of tempnam(). Still
needs testing under UNIX (mkstemp()), works reliably under Windows now.
- Reimplement the mechanism for unlinking uploaded files at the end of the request
(was it ever tested?). Files moved with move_uploaded_file() will not be unlink()'d
again, to avoid (albeit very unlikely) race conditions.

show more ...

# fa6bb597 08-Sep-2000 Zeev Suraski

Fix build

# 75086e30 08-Sep-2000 Zeev Suraski

- Implemented is_upload_file()

# 9f86ff88 04-Sep-2000 Sterling Hughes

@Add a php.ini option session.use_trans_sid to enable/disable trans-sid. (Sterling)

# cd8af6aa 01-Sep-2000 Andrei Zmievski

@- Added support for user defined 'tick' callback functions. This helps
@ emulate background processing. (Andrei)

Revision tags: php-4.0.2
# c542f9a3 24-Aug-2000 Zeev Suraski

- Fix IMAP build problem
- Allow external DLLs to use warn_not_available

Revision tags: PRE_LIBMYSQL_REVERT, php-4.0.2RC1
# 8e0ae5d1 21-Aug-2000 Sascha Schumann

Cleaning up some mess

Revision tags: PRE_FILE_COMPILE_API_CHANGE
# ea5ab044 01-Aug-2000 Hartmut Holzgraefe

trans-sid rewrite, is now state-aware (fix for bug #3411 and friends)

# 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 ...

Revision tags: PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# 16017f6d 02-Jul-2000 Sascha Schumann

Change header protection macros to conform to standard.

Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

All identifiers that begin with an underscore and either an

Change header protection macros to conform to standard.

Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.

show more ...

Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC
# 2297f670 23-Jun-2000 Sascha Schumann

Change the serialization semantics to:

* if a certain object is of class INCOMPLETE_CLASS, the serializer will
lookup the previously stored original class name of that object, and

Change the serialization semantics to:

* if a certain object is of class INCOMPLETE_CLASS, the serializer will
lookup the previously stored original class name of that object, and
use that class name to serialize the object.

Change the deserialization semantics to:

* if the class of an object, which is to be instantiated, is not found
in the current context, the class name will be stored for later
retrieval, and the class of that object is changed to INCOMPLETE_CLASS.

All function calls, property gets, and property sets operating on an
object of class INCOMPLETE_CLASS cause the execution to halt and to
output an informative error message.

show more ...

# 777f8dcc 21-Jun-2000 Rasmus Lerdorf

Add a crc32 checksum function - used by the udm_search search engine
and currently run through a system call. This will speed up the udm_search
php frontend significantly.
@ Add a crc32

Add a crc32 checksum function - used by the udm_search search engine
and currently run through a system call. This will speed up the udm_search
php frontend significantly.
@ Add a crc32 checksum function - used by the udm_search search engine
@ and currently run through a system call. This will speed up the udm_search
@ php frontend significantly. (Rasmus)

show more ...

Revision tags: PRE_EIGHT_BYTE_ALLOC_PATCH
# c07a056d 29-May-2000 Zeev Suraski

There's really no need for an entire file for a one line function...

# 9cd49294 28-May-2000 Sascha Schumann

Make syslog module thread-safe.

Revision tags: php-4.0.0, php-4.0RC2, PHP-4.0-RC1
# ddf3740c 16-Mar-2000 Andrei Zmievski

@ Added is_numeric() that returns true if the argument is a number
@ or a numeric string. (Andrei)

# 99e0b363 06-Mar-2000 Stig Bakken

@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.

12345678910