History log of /PHP-5.5/ext/standard/basic_functions.c (Results 101 – 125 of 1086)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 9805e167 22-Jul-2011 Pierre Joye

- remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ


# cc1c7af0 22-Jul-2011 Pierre Joye

- remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ


Revision tags: php-5.3.7RC3, php-5.4.0alpha2
# 513dc267 12-Jul-2011 Kalle Sommer Nielsen

Changed http_response_code() to be able to set a response code


# 9f782a73 12-Jul-2011 Kalle Sommer Nielsen

Changed http_response_code() to be able to set a response code


Revision tags: php-5.3.7RC2
# 6c02d95b 23-Jun-2011 Felipe Pena

- Missing valid path check


# f9f298cc 23-Jun-2011 Felipe Pena

- Missing valid path check


# 08ddf683 23-Jun-2011 Felipe Pena

- Fixed crash in error_log() (strlen(NULL)) reported by: shm, Maksymilian Arciemowicz


# 97ec4f27 20-Jun-2011 Patrick Allaert

Changed register_shutdown_function() to reflect that it is using a cb (thx arpad)


Revision tags: php-5.4.0alpha1, php-5.3.7RC1
# bc6cb0c7 12-Jun-2011 Felipe Pena

- Fixed bug #54680 (missing TRACK_VARS_SERVER check)


# 8d4a35f3 12-Jun-2011 Felipe Pena

- Fixed bug #54680 (missing TRACK_VARS_SERVER check)


# 0ec17583 12-Jun-2011 Felipe Pena

- Fixed bug #54680 (missing TRACK_VARS_SERVER check)


# 33a8442c 07-Jun-2011 Felipe Pena

- Fix memory leak caused by RSHUTDOWN not being called by MINIT dependency


# 32b5f8a1 06-Jun-2011 Felipe Pena

- Added new parameter parsing option (p - for valid path (string without null byte in the middle))
# The tests will be fixed in the next commits


# 4737910b 06-Jun-2011 Felipe Pena

- Added new parameter parsing option (p - for valid path (string without null byte in the middle))
# The tests will be fixed in the next commits


# 14e33055 03-Jun-2011 Scott MacVicar

Further fix for #54918 - We attach a bunch of submodules loading to the basic MINIT, but if an error occurs during their MINIT we still call the MSHUTDOWN()

Other possible fix is that we sho

Further fix for #54918 - We attach a bunch of submodules loading to the basic MINIT, but if an error occurs during their MINIT we still call the MSHUTDOWN()

Other possible fix is that we should halt execution entirely when this happens but this feels a little drastic.

Committing to trunk for now

show more ...


# 76cbcc7f 03-Jun-2011 Scott MacVicar

Added fabled hex2bin() function


# 398c0b9d 03-Jun-2011 Scott MacVicar

Added fabled hex2bin() function


# a2e0e256 01-May-2011 Gustavo André dos Santos Lopes

- Fixed bug #54580 (get_browser() segmentation fault when the browscap ini
directive is set in activation time). This commit fixes this by adding a per
request parsing of the browscap fil

- Fixed bug #54580 (get_browser() segmentation fault when the browscap ini
directive is set in activation time). This commit fixes this by adding a per
request parsing of the browscap file that's when get_browser is called the
first time and the directive is set on activation time.w

show more ...


# 6d9d7af8 01-May-2011 Gustavo André dos Santos Lopes

- Fixed bug #54580 (get_browser() segmentation fault when the browscap ini
directive is set in activation time). This commit fixes this by adding a per
request parsing of the browscap fil

- Fixed bug #54580 (get_browser() segmentation fault when the browscap ini
directive is set in activation time). This commit fixes this by adding a per
request parsing of the browscap file that's when get_browser is called the
first time and the directive is set on activation time.w

show more ...


Revision tags: php-5.3.6, php-5.3.6RC3, php-5.3.6RC2
# a3a51572 19-Feb-2011 Gustavo André dos Santos Lopes

- PHP_STREAM_OPTION_WRITE_BUFFER no longer disables the read buffer of a plain
stream when 0 is given as the value.
- PHP_STREAM_OPTION_WRITE_BUFFER no longer changes the chunk size in sock

- PHP_STREAM_OPTION_WRITE_BUFFER no longer disables the read buffer of a plain
stream when 0 is given as the value.
- PHP_STREAM_OPTION_WRITE_BUFFER no longer changes the chunk size in socket
streams.
- Added stream_set_chunk_size() function.
- Some signedness fixes.
- Test for commit r308474, now that it's possible to actually test it.

show more ...


Revision tags: php-5.3.6RC1
# 6fba6737 08-Feb-2011 Gustavo André dos Santos Lopes

- Fixed bug #53959 (reflection data for fgetcsv out-of-date).


# 077ee3a8 08-Feb-2011 Gustavo André dos Santos Lopes

- Fixed bug #53959 (reflection data for fgetcsv out-of-date).


# 2b4fb94e 04-Feb-2011 Adam Harvey

Fix bug #53913 (Streams functions assume HAVE_GLOB is defined). Patch by Chris
Jones.


# 521e5462 04-Feb-2011 Adam Harvey

Fix bug #53913 (Streams functions assume HAVE_GLOB is defined). Patch by Chris
Jones.


# ca378eef 03-Feb-2011 Scott MacVicar

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), heade

Add header_register_callback(), allows a userland function
to be called as all the headers are being sent and after all
of the default headers have been merged.

headers_list(), header_remove() and header() can all be used
inside the callback.

<?php

header('Content-Type: text/plain');
header('X-Test: foo');

function foo() {
foreach (headers_list() as $header) {
if (strpos($header, 'X-Powered') !== false) {
header_remove('X-Powered-By');
}
header_remove('X-Test');
}
}

$result = header_register_callback('foo');
echo "a";

show more ...


12345678910>>...44