Voting

: min(eight, eight)?
(Example: nine)

The Note You're Voting On

iain (duh) workingsoftware.com.au
17 years ago
I wrote a quick little function for converting something like '·' into '·':

$to_convert = '·';
$table = get_html_translation_table(HTML_ENTITIES);
$equiv = '&#'.ord(array_search($to_convert,$table)).';';

<< Back to user notes page

To Top