summaryrefslogtreecommitdiff
path: root/README.input_filter
Commit message (Collapse)AuthorAgeFilesLines
* Move README files to a dedicated docs directoryPeter Kokot2019-03-301-182/+0
| | | | | | | | | | | | | | | | | The new dedicated docs directory has been introduced after a discussion on GitHub[1]. Main issue it is addressing is the reduction of too many README files in the project root directory. The new directory is dedicated for notes and quick documentation files that either can't be put in the manual or wiki pages or that relate to the php-src repository specifically and need to live together with the source code. Also the `docs` directory is by GitHub used for some repository configuration files such as pull request templates, and contributing documentation helper files that are integrated in the interface. [1]: https://github.com/php/php-src/pull/3988
* Trim trailing whitespace in source code filesPeter Kokot2018-10-131-1/+1
|
* Normalize filter phpinfo() outputPeter Kokot2018-06-021-1/+0
| | | | | | This patch normalizes the filter extension version in the php info output. Instead of the Git attributes ident blob object name from Git repository only extension status is displayed.
* Remove leftovers of TSRMLS in docsTom Van Looy2015-12-251-2/+2
|
* Replaces php5 with php7, without whitespace changes.Florian MARGAINE2014-09-201-1/+0
|
* Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-03-201-1/+1
|\ | | | | | | | | | | | | | | | | * PHP-5.3: Replace $Revision$ with $Id$ in keyword expansion enable files Enable $Id$ expansion for files with the $Revision$ keyword Conflicts: ext/mysqlnd/mysqlnd.h
| * Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
| |
* | Removed register_globalsKalle Sommer Nielsen2010-04-211-17/+5
|/
* Pierre requested an update to this. I don't think it makes sense toRasmus Lerdorf2006-10-301-1/+4
| | | | | | remove what little API docs we have here, and the simple example in this doc is a lot easier to follow than ext/filter.
* MFH: fix docsfoobar2005-12-061-1/+1
|
* Fixed zend_parse_parameters arguments...Stefan Esser2004-06-241-1/+1
|
* - Change from PHP5 -> PHP 5Andi Gutmans2004-02-081-3/+3
|
* - And fix the README too.Derick Rethans2003-11-301-1/+1
|
* - Update NEWS and README for input_filtersDerick Rethans2003-11-291-1/+5
|
* - Fix sapi_input_filter patch. Returning 1 from the filter handler shouldDerick Rethans2003-11-291-2/+3
| | | | | | | make PHP register the variable, returning 0 shouldn't. The new length of the variables being filtered is now returned in the new_val_len argument of the function.
* An input filter might not simply strip stuff, it might also turn thingsRasmus Lerdorf2003-02-201-5/+5
| | | | | | | into entities or use some other mechanism which causes the filtered data to be longer than the original data. Ergo, pass in the address of the buffer instead so the filter is free to reallocate it.
* Input Filter support. See README.input_filter for details.Rasmus Lerdorf2003-02-191-0/+188
@- Input Filter support added. See README.input_filter. (Rasmus)