summaryrefslogtreecommitdiff
path: root/main/php_memory_streams.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* year++Xinchen Hui2018-01-021-1/+1
|
* Turn "php_stream_wrapper"s into constantsDmitry Stogov2017-12-141-1/+1
| | | | Keep non-constant "php_stream_wrapper"s in API functions and callbacks for compatibility.
* Move constants into read-only data segmentDmitry Stogov2017-12-141-3/+3
|
* Fix #75031: Support append mode in `php://temp` streamsAdam Saponara2017-08-041-3/+9
| | | | | | This patch introduces a distinction between write mode and append mode in `php://temp` and `php://memory` streams, achieving parity with C stdio.
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-14/+14
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* restore API compatibilityMichael Wallner2014-07-031-2/+3
|
* finishMichael Wallner2014-07-031-2/+1
|
* refactor php_stream_temp_create{,_ex} and use it for the php://input streamMichael Wallner2014-07-031-1/+3
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* - MFH Add PHPAPI to stuff needed by streams API for shared extsMarcus Boerger2007-02-031-4/+4
| | | | | | - MFH Readonly issue fix to memory streams option handling (still not activated in 5.2.1 though)
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - MFH Initial support for RFC2397Marcus Boerger2006-05-131-0/+2
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* add an open mode for the memory streams that allows the stream to takeWez Furlong2005-02-061-0/+1
| | | | | ownership of the passed-in buffer
* wrap all PHPAPI prototypes into BEGIN_EXTERN_C/END_EXTERN_C blocksHartmut Holzgraefe2004-02-201-1/+2
| | | | | (else they won't be usable from C++ extensions)
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-0/+2
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* -defined php_stream_temp_new() for standard temp streamsMarcus Boerger2002-03-231-3/+6
|
* TSRMLS related work on streams, as discussed with Zeev.Wez Furlong2002-03-181-12/+12
| | | | | | # Should be the last "broad" commit for a while # Don't forget to make clean ; make
* tidyup use of STREAMS_DC macrosWez Furlong2002-03-181-6/+8
|
* -temp streams are now clean (Thanks to Wez)Marcus Boerger2002-03-181-12/+16
|
* -added temporary streamsMarcus Boerger2002-03-171-1/+19
| | | | | | -added stream debug code #should be used from php_stream_make_seekable
* -added memory streamsMarcus Boerger2002-03-161-0/+35
@added memory streams (marcus)