Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Generate ext/intl class entries from stubs | Máté Kocsis | 2021-02-09 | 1 | -5/+2 |
| | | | | Closes GH-6670 | ||||
* | Generate method entries for ext/intl | Máté Kocsis | 2020-04-14 | 1 | -24/+1 |
| | | | | Closes GH-5370 | ||||
* | Add stubs for IntlDateFormatter & MessageFormatter | Máté Kocsis | 2020-02-04 | 1 | -39/+12 |
| | | | | Closes GH-4812 | ||||
* | Remove mention of PHP major version in Copyright headers | Gabriel Caruso | 2019-09-25 | 1 | -2/+0 |
| | | | | Closes GH-4732. | ||||
* | Refactor zend_object_handlers API to pass zend_object* and zend_string* ↵ | Dmitry Stogov | 2019-02-04 | 1 | -3/+3 |
| | | | | insted of zval(s). | ||||
* | Remove local variables | Peter Kokot | 2019-02-03 | 1 | -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_ABSTRACT | Dmitry Stogov | 2018-09-05 | 1 | -1/+1 |
| | |||||
* | Export standard object handlers, to avoid indirect access | Dmitry Stogov | 2018-05-31 | 1 | -1/+1 |
| | |||||
* | Move constants into read-only data segment | Dmitry Stogov | 2017-12-14 | 1 | -1/+1 |
| | |||||
* | Add zend_object_alloc() API | Nikita Popov | 2017-11-25 | 1 | -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 retval | Nikita Popov | 2017-08-25 | 1 | -8/+0 |
| | |||||
* | Remove useless dtor handlers in intl | Nikita Popov | 2016-07-16 | 1 | -8/+0 |
| | | | | These are only indirections to the default handler | ||||
* | Move zend_object->guards into additional slot of ↵ | Dmitry Stogov | 2015-02-04 | 1 | -1/+1 |
| | | | | zend_object->properties_table[]. As result size of objects without __get/__set/__unset/__isset magic methods is reduced. | ||||
* | trailing whitespace removal | Stanislav Malyshev | 2015-01-10 | 1 | -1/+1 |
| | |||||
* | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -16/+16 |
| | |||||
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | Refactoring ext/intl (incompleted) | Xinchen Hui | 2014-06-28 | 1 | -23/+17 |
| | |||||
* | Fixed defective cloning in ext/intl classes | Gustavo Lopes | 2012-08-26 | 1 | -1/+1 |
| | | | | See also bug #62915 | ||||
* | - Fixed ZTS build | Felipe Pena | 2012-08-22 | 1 | -2/+2 |
| | |||||
* | Merge branch 'PHP-5.3' into PHP-5.4 | Gustavo Lopes | 2012-08-22 | 1 | -7/+15 |
|\ | | | | | | | | | * PHP-5.3: Fix handling of several uinitialized intl objects | ||||
| * | Fix handling of several uinitialized intl objects | Gustavo Lopes | 2012-08-22 | 1 | -7/+15 |
| | | |||||
* | | Merge branch '5.3' into 5.4 | Gustavo André dos Santos Lopes | 2012-07-30 | 1 | -0/+0 |
|\ \ | |/ | | | | | | | | | * 5.3: Limit test to ICU 49 Remove executable bit from files | ||||
| * | Remove executable bit from files | Gustavo André dos Santos Lopes | 2012-07-30 | 1 | -0/+0 |
| | | |||||
| * | - Added missing PHP_FE_END/ZEND_FE_END | Felipe Pena | 2011-08-06 | 1 | -1/+1 |
| | | |||||
| * | Imlement clone for formatters that support it | Stanislav Malyshev | 2011-01-03 | 1 | -1/+25 |
| | | | | | | | | | | # also some test fixes, more to follow | ||||
| * | - Fixed bug #53612 (Segmentation fault when using several cloned intl | Gustavo André dos Santos Lopes | 2010-12-27 | 1 | -1/+6 |
| | | | | | | | | | | objects). | ||||
* | | - Fixed bug #62564 (Extending MessageFormatter and adding property causes crash) | Felipe Pena | 2012-07-14 | 1 | -0/+1 |
| | | |||||
* | | - Added missing PHP_FE_END/ZEND_FE_END | Felipe Pena | 2011-08-06 | 1 | -1/+1 |
| | | |||||
* | | Imlement clone for formatters that support it | Stanislav Malyshev | 2011-01-03 | 1 | -1/+25 |
| | | | | | | | | | | # also some test fixes, more to follow | ||||
* | | - Fixed bug #53612 (Segmentation fault when using several cloned intl | Gustavo André dos Santos Lopes | 2010-12-27 | 1 | -1/+6 |
| | | | | | | | | | | objects). | ||||
* | | Remove main/php3_compat.h, for that a few references to `function_entry` have | Johannes Schlüter | 2010-03-30 | 1 | -1/+1 |
|/ | | | | | to be replaced by `zend_function_entry`. | ||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-11-17 | 1 | -6/+0 |
| | |||||
* | - Revert ZEND_BEGIN_ARG_INFO change | Felipe Pena | 2008-11-02 | 1 | -0/+6 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-10-24 | 1 | -6/+0 |
| | |||||
* | MFH: | Felipe Pena | 2008-08-11 | 1 | -20/+53 |
| | | | | | | | - Added arginfo - Fixed WS - Changed C++ comments to C comments | ||||
* | Merge intl extension into core | Stanislav Malyshev | 2008-07-07 | 1 | -0/+127 |