Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I cannot work out how to get the currency symbol?

At the moment I am using

setlocale(LC_MONETARY, 'en_GB');
money_format('%i', 1000);

Which give me the output

GBP1,000

But I want

£1,000

I have checked out the PHP manual but it isn't that helpful.

Any ideas?

share|improve this question
Maybe this will help: stackoverflow.com/questions/6060008/money-format-showing – Tim Jan 26 '12 at 14:18
@Tim That just tells you to put £ instead of £ but I can actually get £ to display. It just shows GBP in it's place. Thanks though :) – Max Rose-Collins Jan 26 '12 at 14:20
My machine doesn't even print GBP. :o – shiplu.mokadd.im Jan 26 '12 at 14:24
@Shiplu Your machine probably has no locale files installed for "en_GB". If it's a Debian distro, you can edit /etc/locale.gen. – Linus Kleen Jan 26 '12 at 14:35
@LinusKleen, Its Ubuntu Lucid. Do you know how can I do it? – shiplu.mokadd.im Jan 26 '12 at 15:04
show 1 more comment

4 Answers

up vote 10 down vote accepted

Have you tried this?

setlocale(LC_MONETARY, 'en_GB');
utf8_encode(money_format('%n', 1000));
share|improve this answer
This is close I think, I am now getting a diamond with a ? in the middle. I have my charset as utf-8 which is weird :S – Max Rose-Collins Jan 26 '12 at 14:25
2  
just add utf8_encode(money_format('%n', 1000)); and you will see the symbol... :) – SERPRO Jan 26 '12 at 14:26
Aha! Excellent, thanks for your help :) – Max Rose-Collins Jan 26 '12 at 14:28
You're very welcome.. :) – SERPRO Jan 26 '12 at 14:28
P.s. you should edit your answer to include the utf8_encode bit :) – Max Rose-Collins Jan 26 '12 at 14:29
show 1 more comment

The solution above didn't work for me. This worked:

setlocale(LC_MONETARY, 'en_GB.UTF-8');
money_format('%n', 1000);
share|improve this answer
Much more flexible than the selected answer, as this stops the need to rewrite functions if using different localitys. – rickyduck Mar 21 at 13:34

An easy solution could be te replace GBP with & pound ; (without the spaces) after the money_format.

share|improve this answer
On the php manual they show you can use the $ sign so you must be able to get the £ as you can set your location to GB – Max Rose-Collins Jan 26 '12 at 14:22
1  
Have you tried using setlocale(LC_MONETARY, 'en_GB.UTF-8');. It was sugested on the website @tim placed as a comment. – Aidan Jan 26 '12 at 14:26

Use str_replace() function is an option.

£ - British Pound - £ (163)

// Search for the GBP in your string (subject) then replace for the symbol code
$search = "GBP";
$replace = "£";
$subject = "GBP";
echo str_replace($search, $replace, $subject);
share|improve this answer
This is the wrong way of using money_format. – rickyduck Mar 21 at 13:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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