I am working with a wordpress project. where using some money related work. where amount in database.the amount shows with a $ sign. i want to replace this $
sign with EURO sign. but when i using str_replace
function it took the $amount
as a variable, not as a string. what is the way to replace this $ ?
Here echo product_list_price($project->ID);
function returning the price containing $
sign. now i have to replace this sign into EURO sign and then to echo.
how can i convert this as a single quoted string?
Thanks in advance