Nonbreaking space within large numbers
-
Hey!
AMAZING plugin! I was just about to jump into the Google Analytics API and hard code this myself, figured I’d see if something existed first (a month ago nothing did!) and voila – you have created the magic! Great work!
For counts that output put in the thousands (ie, 203425) there appears to be an extra nonbreaking line space (after clusters of 3) – like this: 203 425. I’ve been able to “remove” it via the below:
$postviews = gapp_get_post_pageviews(); $output = preg_replace("/\b(\d+)\s+(?=\d+\b)/", "$1", $postviews); echo $output;
And to add a comma where appropriate via english_format
$postviews = gapp_get_post_pageviews(); $output = preg_replace("/\b(\d+)\s+(?=\d+\b)/", "$1", $postviews); echo number_format($output);
Just incase anyone is trying to do the same – the above works.
https://www.ads-software.com/plugins/google-analytics-post-pageviews/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Nonbreaking space within large numbers’ is closed to new replies.