vote up 0 vote down star

I have a lot of information to display from a database. Some are french, other are english. Some are a unique, some a list...

The question : how do you manage all that different option in PHP

IF ELSE SWITCH ARRAY (with all the text)

other method ...

now the problem rise on a list of odors, some have one (odor) other have many (odors) putting the s or not is a pain..... help !

thanks

flag

Can you explain better? Your question is very unclear. – rogeriopvl Oct 7 at 20:58

3 Answers

vote up 3 vote down check

The best way IMO is to have an array of all your pluralization rules for each language, i.e. array('man'=>'men', 'woman'=>'women'); and write a pluralize() function for each singular word.

You may want to take a look at the CakePHP inflector for some inspiration.

http://api.cakephp.org/class/inflector

link|flag
vote up 4 vote down

You might want to look at the gettext extension. More specifically, it sounds like ngettext() will do what you want: it pluralises words correctly as long as you have a number to count from.

print ngettext('odor', 'odors', 1); // prints "odor"
print ngettext('odor', 'odors', 4); // prints "odors"
print ngettext('%d cat', '%d cats', 4); // prints "4 cats"

You can also make it handle translated plural forms correctly, which is its main purpose, though it's quite a lot of extra work to do.

link|flag
vote up 2 vote down

If you're going to go down the route of writing your own pluralize function then you might find this algorithmic description of pluralisation helpful:

http://www.csse.monash.edu.au/~damian/papers/HTML/Plurals.html

Or the much easier approach would probably be to use one of the ready-made pluralize functions available on the Internet:

http://www.eval.ca/2007/03/03/php-pluralize-method/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.