summaryrefslogtreecommitdiff
path: root/main/internal_functions.c.in
Commit message (Collapse)AuthorAgeFilesLines
* [ci skip] Remove text editor modelinesPeter Kokot2019-03-231-1/+1
| | | | | | These were already removed 92ac598aabd336593a47ed3959f1031674b763e6 and this fixes some leftovers. These files don't really need these settings.
* Remove local variablesPeter Kokot2019-02-031-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Remove yearly range from copyright noticeZeev Suraski2019-01-301-1/+1
|
* Future-proof email addresses...Zeev Suraski2018-11-011-2/+2
|
* 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
|
* Move constants into read-only data segmentDmitry Stogov2017-12-141-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Julien Pauli2016-01-041-1/+1
|\ | | | | | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) Conflicts: ext/json/php_json_encoder.h sapi/continuity/capi.c
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-031-1/+1
| |
* | second shot on removing TSRMLS_*Anatol Belski2014-12-141-2/+2
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* - MFH Cleanup exports and allow to overwrite ext registrationMarcus Boerger2008-08-221-2/+1
|
* Update copyright yearIlia Alshanetsky2007-01-011-1/+1
| | | | | # The rest of the files were already updated by Sebastian
* const/static keywordingNuno Lopes2006-08-121-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-2/+2
| | | | dependencies and conflicts
* nuked unused header filefoobar2005-05-241-1/+0
|
* - 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?
* Removed unnecessary ssl.h includefoobar2003-09-231-6/+0
|
* - HAVE_OPENSSL_EXT is not defined always.foobar2003-06-271-1/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-1/+0
|
* New PHP streams...Wez Furlong2002-03-151-0/+6
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Remove references to global startup functions.Andrei Zmievski2001-07-241-10/+0
|
* - Finally rename modules.h to zend_modules.h for consistency (first tryAndi Gutmans2001-02-261-1/+1
| | | | | | | was 2000-03-11). - Remove the first_arg_force_ref[]; and friends extern from php.h as they are included via zend_API.h
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* remove unneded commentsThies C. Arntzen2001-02-131-3/+0
|
* Move main.h to php_main.h.Sascha Schumann2000-06-051-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* - Define these ones and declare them in modules.hZeev Suraski2000-03-121-5/+0
|
* @Cleaned up extension namespace (Stig)Stig Bakken2000-03-061-18/+1
| | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension.
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* Provide basis for shared libraries/dlls to contain internal extensionsSam Ruby1999-12-071-39/+10
|
* new assert() module. (Not yet finished!)Thies C. Arntzen1999-12-071-22/+11
|
* These are inserted automatically now.Andrei Zmievski1999-11-131-16/+0
|
* Split array functions into separate module.Andrei Zmievski1999-11-131-0/+2
|
* moved output.c into ext/standart and made it thread-safe.Thies C. Arntzen1999-10-271-0/+2
| | | | | | | | | moved output-buffering related functions from basic_functions to output.c Win32 project need to be updated to reflect new position. # i'm not really happy with this solution, but it seemed the easiest one! # the whole output code is a bit hard to understand... @- Output-Buffering system is now Thread-Safe. (Thies)
* added Metaphone supportThies C. Arntzen1999-09-131-0/+2
|
* - add global startup/shutdown handlersSascha Schumann1999-09-031-1/+32
| | | | | | | | | | - improve genif.sh to also consider all header files for inclusion (checks for phpext_) - use vsnprintf in main.c to avoid buffer overflows - improve sessions's mm module to cope better with OOM situations within the shared memory segment - fix typo wrt session.auto_start
* moved lcg stuff to ext/standardStig Bakken1999-08-291-0/+2
|
* * Include all of the standard modules in internal_functions.c.in. Stig - is ↵Zeev Suraski1999-05-141-0/+22
| | | | | | | | | that the way you intended it to be? How does the basic_functions module get in there? * Fix to get MySQL objects working, even though I'll probably make a dedicated MySQL object in the future.
* - regex cache (needs some work)Sascha Schumann1999-05-121-0/+2
| | | | | - str_replace changes from php3
* * added --enable-thread-safety switchStig Bakken1999-05-031-0/+79
* now generating internal_functions.c