History log of /PHP-5.5/ext/standard/basic_functions.c (Results 251 – 275 of 1086)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# a3c09d61 19-Jan-2008 David Coallier

- MFH (lcfirst())
- Initial test for lcfirst


Revision tags: php-4.4.8
# d1dded87 31-Dec-2007 Sebastian Bergmann

MFH: Bump copyright year, 2 of 2.


Revision tags: php-4.4.8RC1, RELEASE_1_2_3
# 024fc2c7 21-Nov-2007 Hannes Magnusson

MFH: - Add support for optional values
MFH: - Add support for = as seperator


# cbf466a9 20-Nov-2007 Johannes Schlüter

MFH: Add stream_supports_lock() function (Benjamin Schulz)


# 0aae13f9 15-Nov-2007 Hannes Magnusson

MFH: Allow numeric options & tests


# 35ba8020 14-Nov-2007 Hannes Magnusson

Fixed bug#43293 (Multiple segfaults in getopt())


Revision tags: php-5.2.5
# 5aa7108e 06-Nov-2007 Marcus Boerger

- MFH Add glob stream wrapper
[DOC] The glob stream wrapper allows stuff like this:
php -r '$it = new DirectoryIterator("glob://ext/spl/*.c");
foreach($it as $f) var_dump($f);'


# b4892511 02-Nov-2007 Jani Taskinen

- MFH from HEAD:
. Folding tags
. Parameter parsing
. SPL debug info
. array function improvements (not all yet)
. Improvements to function calling with call_user_* func

- MFH from HEAD:
. Folding tags
. Parameter parsing
. SPL debug info
. array function improvements (not all yet)
. Improvements to function calling with call_user_* functions
. Improvements to debugging info in var_dump/print_r
# I propably forgot already something but this all was pretty close tied
# to each other so it wasn't possible to do it in parts.

show more ...


Revision tags: php-5.2.5RC2
# fa6e5df1 22-Oct-2007 Dmitry Stogov

Fixed move_uploaded_file() to always set file permissions of resulting file according to UMASK (Andrew Sitnikov)


Revision tags: php-5.2.5RC1
# 4b4d634c 07-Oct-2007 Yiduo (David) Wang

MFH: Added macros for managing zval refcounts and is_ref statuses


Revision tags: BEFORE_IMPORT_OF_MYSQLND_IN_5_3
# aa3eee1d 05-Oct-2007 Jani Taskinen

MFH:- Moved the old regex functions to own extension: ereg


Revision tags: RELEASE_1_2_2
# 32966bb3 01-Oct-2007 Johannes Schlüter

- pass the adress not the value


# 2bc631fb 01-Oct-2007 Jani Taskinen

MFH:- Added common getopt implementation to core.
MFH:- Added long-option feature to getopt().
MFH:- Made getopt() available on win32 systems.
MFH: Patch by: David Soria Parra <dsp@php.n

MFH:- Added common getopt implementation to core.
MFH:- Added long-option feature to getopt().
MFH:- Made getopt() available on win32 systems.
MFH: Patch by: David Soria Parra <dsp@php.net>
[DOC]: These changes will be available from 5.3+

# Note: Fixed also tests and synced basic_functions.c with HEAD.

show more ...


# f37e408e 28-Sep-2007 Dmitry Stogov

Support for namespaces


# 09b6f37f 28-Sep-2007 Jani Taskinen

MFH:

- Added ".htaccess" style user-defined php.ini files support for
CGI/FastCGI.
- Added support for special [PATH=/opt/httpd/www.example.com/] sections
in php.ini. All dir

MFH:

- Added ".htaccess" style user-defined php.ini files support for
CGI/FastCGI.
- Added support for special [PATH=/opt/httpd/www.example.com/] sections
in php.ini. All directives set in these sections will not be able to be
overridden in user-defined ini-files or during runtime in the specified
path.

- Improved php.ini handling:
. Added better error reporting for syntax errors in php.ini files
. Allowed "ini-variables" to be used almost everywhere ini php.ini files
. Allowed using alphanumeric/variable indexes in "array" ini options
. Fixed get_cfg_var() to be able to return "array" ini options

- Fixed bug #27372 (parse error loading browscap.ini at apache startup)
- Fixed bug #42069 (parse_ini_file() allows using some non-alpha numeric
characters)

show more ...


# 6c810b0d 27-Sep-2007 Dmitry Stogov

Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)


# e2807151 06-Sep-2007 Derick Rethans

- MFH: Add a comment why not ~0 or -1.


# 152d3799 01-Sep-2007 Derick Rethans

- MFH: Fixed bug #42512 (ip2long('255.255.255.255') should return 4294967295 on
64-bit PHP).


Revision tags: RELEASE_1_2_4
# cac7e107 31-Aug-2007 Jani Taskinen

MFH: ws + protos


Revision tags: RELEASE_1_2_1, php-5.2.4, RELEASE_1_5, php-5.2.4RC3, php-5.2.4RC2
# eb4a23c5 16-Aug-2007 Jani Taskinen

- Check the length too (just like in HEAD)


# a3e6f47e 16-Aug-2007 Jani Taskinen

MFH:- Fix bug #41946 (ip2long("") should return FALSE)


Revision tags: php-5.2.4RC1, BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND
# 93af1c1f 19-Jul-2007 Antony Dovgal

MFH: fix #41989 (move_uploaded_file() & relative path in ZTS mode)


# dc8d09bb 11-Jul-2007 Johannes Schlüter

- MFH: Always enable mail() function


# 539f67ed 09-Jul-2007 Dmitry Stogov

Added ability to create local or remote (URL) user streams
Local user streams must not be able to open(), URLs if allow_url_include is off
Implemented new function stream_is_local()
[

Added ability to create local or remote (URL) user streams
Local user streams must not be able to open(), URLs if allow_url_include is off
Implemented new function stream_is_local()
[
- stream_wrapper_register() extended with additional optional argument "flags"
of type long. This time only one flag is implemented
- STREAM_IS_URL, that means that userstream wrapper is remote (URL).
By default stream is local.
- stream_is_local() is a new function that accepts stream and tell if this
stream is local or remote (URL)
]

show more ...


# ce22f444 26-Jun-2007 Antony Dovgal

MFH: fix #41445 (parse_ini_file() has a problem with certain types of integer as sections)


1...<<11121314151617181920>>...44