summaryrefslogtreecommitdiff
path: root/ext/standard/scanf.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove local variablesPeter Kokot2019-02-031-9/+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
|
* Implement typed propertiesNikita Popov2019-01-111-19/+13
| | | | | | | | | | RFC: https://wiki.php.net/rfc/typed_properties_v2 This is a squash of PR #3734, which is a squash of PR #3313. Co-authored-by: Bob Weinand <bobwei9@hotmail.com> Co-authored-by: Joe Watkins <krakjoe@php.net> Co-authored-by: Dmitry Stogov <dmitry@zend.com>
* 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
|
* Cleanup type conversionDmitry Stogov2017-12-071-2/+2
|
* Remove superfluous semicolonsTom Van Looy2017-06-261-1/+1
|
* 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-11/+10
| |
* | bring back all the TSRMLS_FETCH() stuffAnatol Belski2014-10-151-0/+1
| | | | | | | | for better comparability with the mainstream
* | cleanup TSRMLS_FETCH in ext/standardAnatol Belski2014-09-261-1/+0
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | master renames phase 7PRE_AST_MERGEAnatol Belski2014-08-251-1/+1
| |
* | master renames phase 3Anatol Belski2014-08-251-10/+10
| |
* | master renames phase 1Anatol Belski2014-08-251-14/+14
| |
* | rename zval_get_long and fixes to some string functionsAnatol Belski2014-08-181-7/+7
| |
* | several fixes -Anatol Belski2014-08-161-9/+9
| | | | | | | | | | | | - param parsing Z_PARAM_STR vs Z_PARAM_STRING - some functions for new params - etc
* | fix macros in the 5 basic extensionsAnatol Belski2014-08-161-7/+7
| |
* | ZVAL_STRINGL takes only three variablesLior Kaplan2014-07-221-1/+1
| | | | | | | | Follow up for commit f4cfaf36
* | Use reference counting instead of zval duplicationDmitry Stogov2014-06-051-22/+18
| |
* | Cleanup (2-nd round)Dmitry Stogov2014-04-151-1/+1
| |
* | Cleanup (1-st round)Dmitry Stogov2014-04-151-4/+4
| |
* | Refactored ZVAL flags usage to simplify various checks (e.g. Z_REFCOUNTED(), ↵Dmitry Stogov2014-04-031-2/+1
| | | | | | | | candidate for GC, etc)
* | Fixed inproper IS_REF handling in ext/standard/tests/strings/bug27295.phptXinchen Hui2014-02-231-21/+13
| |
* | No refcounted typeXinchen Hui2014-02-221-2/+2
| |
* | Use better data structures (incomplete)Dmitry Stogov2014-02-131-47/+48
|/
* 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
|
* * fixed bug #47842 sscanf() does not support 64-bit valuesMichael Wallner2010-05-191-3/+4
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH:Kalle Sommer Nielsen2009-04-021-1/+1
| | | | | We dont need to escape % here, it just generates a compiler warning
* - MFH: Fixed bug #47322 (sscanf %d does't work)Felipe Pena2009-02-061-2/+2
|
* MFH: fix memleaks in sscanf()Antony Dovgal2009-01-191-6/+6
|
* 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: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-6/+6
|
* MFH: - Fixed bug #42107 (sscanf broken when using %2$s type format parameters)Jani Taskinen2007-07-261-0/+1
|
* MFH: cs + ws fixesJani Taskinen2007-07-261-157/+115
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFH: fix #38322 (reading past array in sscanf() leads to arbitary code ↵Antony Dovgal2006-08-041-7/+19
| | | | execution)
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: Nuke php3 legacyfoobar2005-12-051-4/+4
|
* - Bumber up yearfoobar2005-08-031-1/+1
|