summaryrefslogtreecommitdiff
path: root/ext/intl/msgformat/msgformat_class.c
Commit message (Collapse)AuthorAgeFilesLines
* Generate ext/intl class entries from stubsMáté Kocsis2021-02-091-5/+2
| | | | Closes GH-6670
* Generate method entries for ext/intlMáté Kocsis2020-04-141-24/+1
| | | | Closes GH-5370
* Add stubs for IntlDateFormatter & MessageFormatterMáté Kocsis2020-02-041-39/+12
| | | | Closes GH-4812
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Refactor zend_object_handlers API to pass zend_object* and zend_string* ↵Dmitry Stogov2019-02-041-3/+3
| | | | insted of zval(s).
* 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.
* Get rid of ZEND_ACC_CTOR, ZEND_ACC_DTOR and ZEND_ACC_IMPLEMENTED_ABSTRACTDmitry Stogov2018-09-051-1/+1
|
* Export standard object handlers, to avoid indirect accessDmitry Stogov2018-05-311-1/+1
|
* Move constants into read-only data segmentDmitry Stogov2017-12-141-1/+1
|
* Add zend_object_alloc() APINikita Popov2017-11-251-1/+1
| | | | | | | | | | | Using ecalloc() to create objects is expensive, because the dynamic-size memset() is unreasonably slow. Make sure we only zero the main object structure with known size, as the properties are intialized separately anyway. Technically we do not need to zero the embedded zend_object structure either, but as long as the memset argument is constant, a couple more bytes don't really matter.
* Remove superfluous checks of register_internal_class retvalNikita Popov2017-08-251-8/+0
|
* Remove useless dtor handlers in intlNikita Popov2016-07-161-8/+0
| | | | These are only indirections to the default handler
* Move zend_object->guards into additional slot of ↵Dmitry Stogov2015-02-041-1/+1
| | | | zend_object->properties_table[]. As result size of objects without __get/__set/__unset/__isset magic methods is reduced.
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-16/+16
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* Refactoring ext/intl (incompleted)Xinchen Hui2014-06-281-23/+17
|
* Fixed defective cloning in ext/intl classesGustavo Lopes2012-08-261-1/+1
| | | | See also bug #62915
* - Fixed ZTS buildFelipe Pena2012-08-221-2/+2
|
* Merge branch 'PHP-5.3' into PHP-5.4Gustavo Lopes2012-08-221-7/+15
|\ | | | | | | | | * PHP-5.3: Fix handling of several uinitialized intl objects
| * Fix handling of several uinitialized intl objectsGustavo Lopes2012-08-221-7/+15
| |
* | Merge branch '5.3' into 5.4Gustavo André dos Santos Lopes2012-07-301-0/+0
|\ \ | |/ | | | | | | | | * 5.3: Limit test to ICU 49 Remove executable bit from files
| * Remove executable bit from filesGustavo André dos Santos Lopes2012-07-301-0/+0
| |
| * - Added missing PHP_FE_END/ZEND_FE_ENDFelipe Pena2011-08-061-1/+1
| |
| * Imlement clone for formatters that support itStanislav Malyshev2011-01-031-1/+25
| | | | | | | | | | # also some test fixes, more to follow
| * - Fixed bug #53612 (Segmentation fault when using several cloned intlGustavo André dos Santos Lopes2010-12-271-1/+6
| | | | | | | | | | objects).
* | - Fixed bug #62564 (Extending MessageFormatter and adding property causes crash)Felipe Pena2012-07-141-0/+1
| |
* | - Added missing PHP_FE_END/ZEND_FE_ENDFelipe Pena2011-08-061-1/+1
| |
* | Imlement clone for formatters that support itStanislav Malyshev2011-01-031-1/+25
| | | | | | | | | | # also some test fixes, more to follow
* | - Fixed bug #53612 (Segmentation fault when using several cloned intlGustavo André dos Santos Lopes2010-12-271-1/+6
| | | | | | | | | | objects).
* | Remove main/php3_compat.h, for that a few references to `function_entry` haveJohannes Schlüter2010-03-301-1/+1
|/ | | | | to be replaced by `zend_function_entry`.
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-6/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+6
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-6/+0
|
* MFH:Felipe Pena2008-08-111-20/+53
| | | | | | | - Added arginfo - Fixed WS - Changed C++ comments to C comments
* Merge intl extension into coreStanislav Malyshev2008-07-071-0/+127