summaryrefslogtreecommitdiff
path: root/ext/intl/formatter/formatter_parse.c
Commit message (Collapse)AuthorAgeFilesLines
* Promote warnings to exceptions in ext/intlMáté Kocsis2020-09-071-8/+11
| | | | Closes GH-5972
* Remove proto comments from C filesMax Semenik2020-07-061-10/+2
| | | | Closes GH-5758
* Generate method entries for ext/intlMáté Kocsis2020-04-141-1/+0
| | | | Closes GH-5370
* Use RETURN_THROWS() after zend_parse_method_parameters()Máté Kocsis2020-01-021-2/+2
|
* Cleanup return values for Intl when parameter parsing is unsuccessfulMáté Kocsis2019-10-301-2/+2
| | | | Closes GH-4871.
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Use ZEND_TRY_ASSIGN_REF_... macros for arguments passed to internal function ↵Dmitry Stogov2019-04-241-2/+2
|\ | | | | | | by reference
| * Use ZEND_TRA_ASSIGN_REF_... macros for by reference arguments of internal ↵Dmitry Stogov2019-04-241-2/+2
| | | | | | | | functions.
* | Intl: Don't separately report "bad arguments" errorsNikita Popov2019-03-111-6/+0
|/ | | | | zpp will be throwing for these now, don't report them in addition to that.
* 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.
* Implement typed propertiesNikita Popov2019-01-111-14/+10
| | | | | | | | | | 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>
* Fixed incorrrecr zval_dtor() usage to replace value of argument passed by ↵Dmitry Stogov2018-07-051-3/+3
| | | | reference, that may lead to memory leaks.
* [ci skip] Fix reference notation in protosChristoph M. Becker2018-03-061-2/+2
|
* [ci skip] Use float instead of double in protoGabriel Caruso2018-03-061-2/+2
|
* Cleanup type conversionDmitry Stogov2017-12-071-4/+2
|
* fix include orderAnatol Belski2016-06-211-1/+2
|
* Added ZEND_ATTRIBUTE_FORMAT to some middind functions.Dmitry Stogov2016-06-211-1/+1
| | | | | "%p" replaced by ZEND_LONG_FMT to avoid compilation warnings. Fixed most incorrect use cases of format specifiers.
* Cleanup (avoid string reallocations)Dmitry Stogov2015-07-011-6/+3
|
* cleanup intl typesStanislav Malyshev2014-12-291-3/+3
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-5/+5
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* first show to make 's' work with size_tAnatol Belski2014-08-271-2/+2
|
* master renames phase 7PRE_AST_MERGEAnatol Belski2014-08-251-2/+2
|
* master renames phase 3Anatol Belski2014-08-251-1/+1
|
* master renames phase 1Anatol Belski2014-08-251-8/+8
|
* fixes to %pd format usageAnatol Belski2014-08-241-1/+1
|
* ported ext/intl, bugfixes to goAnatol Belski2014-08-191-4/+4
|
* basic macro replacements, all at onceAnatol Belski2014-08-191-8/+8
|
* Separate argument passed by referenceDmitry Stogov2014-07-081-2/+2
|
* Merge branch 'master' into testDmitry Stogov2014-07-071-1/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (48 commits) change locale - looks like not everybody has sl_SI Fix bug #66921 - Wrong argument type hint for function intltz_from_date_time_zone fix format Fix bug #67052 (NumberFormatter::parse() resets LC_NUMERIC setting) Make sure the generator script also creates a newline at the end of file Add newline at end of file to prevent compilation warning Fix handling of session user module custom handlers. Reference bug report instead of github issue in NEWS file add more exts for Travis Update NEWS Fix phpdbg.1 man page installation when build != src directory BFN for bug #67551 (php://input temp file will be located in sys_temp_dir instead of upload_tmp_dir) reorder restore API compatibility finish refactor php_stream_temp_create{,_ex} and use it for the php://input stream refactor _php_stream_fopen_{temporary_,tmp}file() fix length overflow of HTTP_RAW_POST_DATA Update NEWS Fixed bug #67215 (php-cgi work with opcache, may be segmentation fault happen) ... Conflicts: ext/opcache/zend_accelerator_util_funcs.c ext/session/mod_user.c ext/spl/spl_array.c ext/spl/spl_dllist.c ext/standard/file.c ext/standard/streamsfuncs.c ext/standard/string.c main/streams/memory.c
| * Fix bug #67052 (NumberFormatter::parse() resets LC_NUMERIC setting)Stanislav Malyshev2014-07-071-1/+4
| |
* | Fixed segfault, segfault and segfaultXinchen Hui2014-06-291-0/+2
| |
* | Refactoring ext/intl (incompleted)Xinchen Hui2014-06-281-1/+3
|/
* Remove executable bit from filesGustavo André dos Santos Lopes2012-07-301-0/+0
|
* Bug#59597 NumberFormatter::parse() with TYPE_INT64 results in a 32 bit integerSherif Ramadan2012-04-191-3/+2
|
* - Fixed possible efree(NULL) (bug #55296)Felipe Pena2011-08-041-2/+6
|
* fix bug #14562Stanislav Malyshev2009-01-301-0/+11
|
* MFH:Felipe Pena2008-08-111-7/+7
| | | | | | | - Added arginfo - Fixed WS - Changed C++ comments to C comments
* Merge intl extension into coreStanislav Malyshev2008-07-071-0/+173