History log of /PHP-5.5/ext/standard/basic_functions.c (Results 176 – 200 of 1086)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.0RC4, php-5.2.10
# e52e1fab 15-Jun-2009 Pierre Joye

- silent warning


Revision tags: php-5.2.10RC2, php-5.3.0RC3
# 1fa3b21c 06-Jun-2009 Matt Wilmas

MFH: Fixed error message grammar:
- "cannot" instead of "can not" (meaning "also can")
- "than" instead of "then" (Hint: "then" should hardly be needed;
you're not telling the orde

MFH: Fixed error message grammar:
- "cannot" instead of "can not" (meaning "also can")
- "than" instead of "then" (Hint: "then" should hardly be needed;
you're not telling the order in which to do something)

... plus removed a couple ending. dots

show more ...


Revision tags: php-5.2.10RC1, php-5.3.0RC2
# 7b064cf2 28-Apr-2009 Ilia Alshanetsky

Fixed bug #47365 (ip2long() may allow some invalid values on certain 64bit
systems)


# 476ea1ad 27-Apr-2009 Felipe Pena

- MFH: Fixed bug #48087 (call_user_method() invalid free of arguments)


# 13061cf0 27-Mar-2009 Arnaud Le Blanc

Removed deprecation warning for ticks


Revision tags: php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 274dad3b 19-Jan-2009 Pierre Joye

- MFH:
- add nanosleep
- expose nanosleep and usleep
- [DOC] time_ nanosleep and time_ sleep_ until available on windows
- change nanosleep signature to match posix one


# 59b6e456 16-Jan-2009 Pierre Joye

- symlink, hardlink & co support (2.1/2 :)


# 4093573e 13-Jan-2009 Ilia Alshanetsky

Fixed a bug inside mail() logging code that prevents log file from existing
outside of open_basedir


# 27b89ad0 07-Jan-2009 Pierre Joye

- remove PHP_FE(dl) (actually removing the commented PHP_FE, was commited with my dns patch for win)


# 3c967db4 06-Jan-2009 Pierre Joye

- [MFH]
- [DOC] add support for all DNS function on Windows
- dns_check_record (and its alias checkdnsrr)
- dns_get_record
- IPV6 specific info not available yet:
.

- [MFH]
- [DOC] add support for all DNS function on Windows
- dns_check_record (and its alias checkdnsrr)
- dns_get_record
- IPV6 specific info not available yet:
. AAAA info is available only on vista/2k8 for now
. A6 info is not available
- dns_get_mx (and its alias getmxrr)

show more ...


# 540242dc 31-Dec-2008 Ilia Alshanetsky

[DOC]
Added gethostname() to return the current system host name.


# f77719d8 31-Dec-2008 Marcus Boerger

MFH
- Changed dl() to be disabled by default. Enabled only when explicitly
registered by the SAPI layer. Enabled only with CLI, CGI and EMBED. (Dmitry)
[DOC]


# 08659c2d 31-Dec-2008 Sebastian Bergmann

MFH: Bump copyright year, 3 of 3.


Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7
# 2e323544 02-Dec-2008 Christian Seiler

- MFH: Implemented http://wiki.php.net/rfc/rounding


# f1056a82 29-Nov-2008 Stanislav Malyshev

MFB: init BG(page_uid) and BG(page_gid)


Revision tags: php-5.2.7RC5
# c5c9fd8b 26-Nov-2008 Arnaud Le Blanc

MFH: Missed file from commit for #44181 & #44182


# c3f0c8dd 24-Nov-2008 Arnaud Le Blanc

MFH


# 45572a49 24-Nov-2008 Stanislav Malyshev

restore BC for arrays
[DOC] natsort, natcasesort, usort, uasort, uksort, array_flip, array_unique
still won't work with objects


Revision tags: php-5.2.7RC4
# fc2fb50d 17-Nov-2008 Felipe Pena

- MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro


# 2a5079e6 13-Nov-2008 Stanislav Malyshev

[DOC] Add option for error_log to send directly to SAPI logger


# 8c4151ad 13-Nov-2008 Arnaud Le Blanc

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_n

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_name parameter is optionnal, all headers are
removed if it is not set

[SAPIs] The header_handler callback in sapi_module_struct has
been changed, it now take a new argument.

When it is set to SAPI_HEADER_DELETE, sapi_header->header is
the name of an header, header_handler has to delete it.

When it is set to SAPI_HEADER_DELETE_ALL, header_handler has
to delete all headers.

When sapi_header_op_enum is SAPI_HEADER_ADD or _REPLACE,
sapi_header->header is in the form "Name: value", header_handler
has to add or replace the given header.

In all cases, header_handler must not free sapi_header or
sapi_header->header. SAPI_HEADER_ADD must be returned if the
header has been added or replaced, or 0 in other cases.

show more ...


# 06119f47 13-Nov-2008 Arnaud Le Blanc

MFH: Added stream_context_get_params()


Revision tags: BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3
# 2276e85f 05-Nov-2008 Arnaud Le Blanc

MFH: Added parse_ini_string() function (grange at lemonde dot fr, Arnaud)
[DOC] new function parse_ini_string()
proto array parse_ini_string(string ini_string
[, bool proc

MFH: Added parse_ini_string() function (grange at lemonde dot fr, Arnaud)
[DOC] new function parse_ini_string()
proto array parse_ini_string(string ini_string
[, bool process_sections [, int scanner_mode]])
Same as parse_ini_file() except that it takes a string instead of a
filename.

show more ...


# 7a37fa2d 02-Nov-2008 Felipe Pena

- Revert ZEND_BEGIN_ARG_INFO change


# 8f12025b 02-Nov-2008 Felipe Pena

- MFH: Added str_getcsv()


12345678910>>...44