Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Fixed bug #46067 (Collator methods - Segfault) | Felipe Pena | 2008-09-20 | 1 | -0/+4 |
| | |||||
* | New way for check void parameters | Felipe Pena | 2008-03-04 | 1 | -2/+2 |
| | |||||
* | New macro for check void parameters | Felipe Pena | 2008-02-28 | 1 | -1/+1 |
| | |||||
* | Fix build | Jani Taskinen | 2007-11-02 | 1 | -1/+1 |
| | |||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -1/+1 |
| | |||||
* | Wrong locale name. | Andrei Zmievski | 2007-04-10 | 1 | -7/+7 |
| | |||||
* | Fix protos. | Andrei Zmievski | 2006-10-06 | 1 | -4/+4 |
| | |||||
* | Fix protos. | Andrei Zmievski | 2006-09-22 | 1 | -2/+14 |
| | |||||
* | Fix protos. | Andrei Zmievski | 2006-09-21 | 1 | -11/+11 |
| | |||||
* | Backfill protos for ext/unicode functions | Sara Golemon | 2006-09-20 | 1 | -0/+25 |
| | |||||
* | Add collator_set_default(). | Andrei Zmievski | 2006-04-21 | 1 | -7/+28 |
| | |||||
* | Hmm, ZEND_FENTRY() is the only one that allows flags to be added.. | Andrei Zmievski | 2006-04-21 | 1 | -0/+4 |
| | |||||
* | Implement collator_get_default() and simplify/fix the underlying code. | Andrei Zmievski | 2006-04-21 | 1 | -39/+29 |
| | | | | | # Derick, objects aren't that difficult.. :) | ||||
* | Move to refcounted implementation of collators. | Andrei Zmievski | 2006-04-20 | 1 | -14/+37 |
| | |||||
* | Fix collator instantiation. | Andrei Zmievski | 2006-03-28 | 1 | -4/+12 |
| | |||||
* | Fix typos. | Andrei Zmievski | 2006-03-28 | 1 | -2/+2 |
| | |||||
* | - Implemented basic collation support. For some reason "new Collator" gives ↵ | Derick Rethans | 2006-03-26 | 1 | -0/+288 |
segfaults when the object's collation resource is used. - The following example shows what is implemented: <?php $orig = $strings = array( 'côte', 'cote', 'côté', 'coté', 'fluÃe', 'flüÃe', ); echo "German phonebook:\n"; $c = collator_create( "de@collation=phonebook" ); foreach($c->sort($strings) as $string) { echo $string, "\n"; } echo $c->getAttribute(Collator::FRENCH_COLLATION) == Collator::ON ? "With" : "Without", " french accent sorting order\n"; echo "\nFrench with options:\n"; $c = collator_create( "fr" ); $c->setAttribute(Collator::CASE_FIRST, Collator::UPPER_FIRST); $c->setAttribute(Collator::CASE_LEVEL, Collator::ON); $c->setStrength(Collator::SECONDARY); foreach($c->sort($strings) as $string) { echo $string, "\n"; } echo $c->getAttribute(Collator::FRENCH_COLLATION) == Collator::ON ? "With" : "Without", " french accent sorting order\n"; ?> |