summaryrefslogtreecommitdiff
path: root/ext/standard/php_smart_string.h
Commit message (Collapse)AuthorAgeFilesLines
* bump yearXinchen Hui2015-01-151-1/+1
|
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* Make number printing functions less genericNikita Popov2014-09-191-21/+3
| | | | | | | | | | | | | | | | | Now that zend_ulong is 64bit on 64bit platforms, it should be sufficient to always use it, rather than supporting multiple types. API changes: * _zend_print_unsigned_to_buf and _zend_print_signed_to_buf no longer exist. * smart_str(ing)_print_long and smart_str(ing)_print_unsigned no longer exist. * Instead of all these, zend_print_ulong_to_buf and zend_print_long_to_buf should be used. * smart_str_append_generic_ex no longer exists. * smart_str(ing)_append_off_t(_ex) no longer exists, use smart_str(ing)_append_long(_ex) instead.
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* fix typesAnatol Belski2014-09-151-5/+5
|
* master renames phase 1Anatol Belski2014-08-251-2/+2
|
* yet more fixes to zppAnatol Belski2014-08-201-2/+2
|
* Optimize int to string conversionNikita Popov2014-05-231-37/+5
| | | | | | | | Probably platform depedentant, but for me snprintf is terribly slow. The code for the long printing is taken from the smart string API.
* Added smart_string to avoid string duplicatedXinchen Hui2014-05-101-0/+196
for now, if we want result a char * use smart_string, if zend_string use smart_str