Tagged Questions
4
votes
4answers
742 views
Converting fractions to html entities
We've got some fraction information stored in the database, e.g. ¾ ½
Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these to proper html ...
3
votes
6answers
4k views
PHP convert decimal into fraction and back?
I want the user to be able to type in a fraction like:
1/2
2 1/4
3
And convert it into its corresponding decimal, to be saved in MySQL, that way I can order by it and do other comparisons to it.
...
1
vote
2answers
134 views
What is the easiest way to parse a string and replace 1/2 with ½ (and similar) in PHP?
I have a string with many fractions like 1/2, 1/4 etc. I want to replace them with their Unicode equivalents.
I realise I could pick them up with
/\s(\d+)\/(\d+)\s/
How would I replace them with ...
1
vote
3answers
149 views
Turning Floats into Their Closest (UTF-8 Character) Fraction
I want to take any real number, and return the closest number, with the closest fraction as available in the UTF-8 character set, appropriate.
0/4 = 0.00 = # < .125
1/4 = 0.25 = ¼ # > .125 ...
0
votes
3answers
25 views
different output of same value in different situations - array
I can't understand why these arrays give me different outputs:
• this value 1/4 came from a table (db)
id | value
...
2 | 1/4
3 | 1/7
echo $matrix[0][2]; //show 1/4
• but if i do = 1/4
echo ...
0
votes
1answer
90 views
PHP: Can range() be used for fractions?
Could it be possible to use the range() function in PHP to generate a list of fractions or decimals?