summaryrefslogtreecommitdiff
path: root/Zend/zend_ini.h
Commit message (Collapse)AuthorAgeFilesLines
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* reworked ini dtorAnatol Belski2014-12-161-1/+2
|
* free the right globalsAnatol Belski2014-12-161-1/+1
| | | | | | That's the same as in the previous commit. In the TS mode the tsrm cache pointer might be unavailable or point to a wrong thread, so the exact globals passed should be freed.
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-17/+17
|
* Refactored INI subsystem to use zend_string* instead of char*Dmitry Stogov2014-09-011-17/+28
|
* master renames phase 1Anatol Belski2014-08-251-3/+3
|
* first shot on merging the core fro the int64 branchAnatol Belski2014-08-161-3/+3
|
* Allocate zend_strings with correct sizeNikita Popov2014-04-231-30/+0
| | | | | | | | For me (32bit) sizeof(zend_string) is 20, which means that the char[1] array at the end is padded with three bytes. Thus allocating based on sizeof(zend_string)-1 overallocates by those 3 padding bytes. This commit fixes the allocation size, by using XtOffsetOf.
* Cleanup (1-st round)Dmitry Stogov2014-04-151-3/+3
|
* Use better data structures (incomplete)Dmitry Stogov2014-02-181-8/+8
|
* Use better data structures (incomplete)Dmitry Stogov2014-02-101-3/+3
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Fixed bug #64197 (_Offsetof() macro used but not defined on ARM/Clang)Ard Biesheuvel2013-02-131-1/+1
| | | | | | Updated the code to test for __ARMCC_VERSION instead of __arm, as that is a more reliable indicator of whether the ARMCC compiler is being used.
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* improved performance of @ (silence) operatorDmitry Stogov2010-08-181-2/+0
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Add zend_ini_string_ex so that the you can differentiate between NULL as a ↵Scott MacVicar2008-07-071-1/+2
| | | | value and its absence, this is important for ini_get. Related to bug #42657 and #43348
* MFB: Fixed bug #43677 (Inconsistent behaviour of include_path set withIlia Alshanetsky2008-03-131-2/+3
| | | | | php_value). (Patch by: manuel at mausz dot at)
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH:Jani Taskinen2007-09-281-7/+7
| | | | | | | | | | | | | | | | | | | | - 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)
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-2/+2
|
* MFH: Nuked unnecessary TSRMLS_FETCH() callJani Taskinen2007-09-271-1/+1
|
* - No need to break binary compatibility hereJani Taskinen2007-09-071-3/+1
|
* MFH: - Fixed the rest of bug #41561 ( @ operator not working )Jani Taskinen2007-09-071-1/+4
|
* add stage for .htaccessStanislav Malyshev2007-08-021-0/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Ensure that OnUpdateLongGEZero is greater or equal to 0.Ilia Alshanetsky2006-12-251-0/+1
| | | | | Added a update wrapper for ensuring >0 values
* MFH: Fixed mess with CGI/CLI -d command line option (now it works with cgi; ↵Dmitry Stogov2006-09-191-0/+1
| | | | constants are working exactly like in php.ini; with FastCGI -d affects all requests).
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* Bump up the yearfoobar2005-08-031-1/+1
|
* export INI parserStanislav Malyshev2004-07-191-1/+1
|
* - modifyable -> modifiableAndi Gutmans2004-04-121-29/+29
|
* Silence some compile warningsfoobar2004-01-231-6/+6
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* linkage for C++Wez Furlong2003-08-181-2/+7
|
* updating license information in the headers.James Cox2003-06-101-1/+1
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-1/+1
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* - Added some missing CVS $Id$ tags, headers and footers.foobar2003-02-011-0/+9
|
* ini patch to allow 'entry[] = value' entriesHarald Radi2003-01-191-0/+1
|
* partially revert previous commit andHarald Radi2003-01-121-1/+25
| | | | | | change zend_modules.h to include a forward declaration to zend_ini_entry
* added zend_ini_entry to zend_modules_entry asHarald Radi2003-01-121-25/+1
| | | | | discussed with zeev
* Implemented compatibility modeZeev Suraski2003-01-121-0/+1
| | | | | To enable - zend2.implicit_clone = on in php.ini or using ini_set()
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* WhitespaceZeev Suraski2001-08-111-6/+6
|
* Merge from branch - move to standard C scanners in thread safe modeZeev Suraski2001-08-061-0/+5
|