N
N
Nicol212018-03-16 17:49:49
PHP
Nicol21, 2018-03-16 17:49:49

How to change to a space?

$price = number_format($meta['trip_prev_price']);
esc_html ( $price );
How to change , to a space 34,671 (34,671)

Answer the question

In order to leave comments, you need to log in

3 answer(s)
R
riot26, 2018-03-16
@Nicol21

You need to carefully look at the number_format documentation

$price = number_format ($meta['trip_prev_price'], 0, '.', ' ');

V
Vladimir Skibin, 2018-03-16
@megafax

number_format($meta['trip_prev_price'], 2, '.', ' ')
php.net/number_format

D
Dmitry, 2018-03-16
@demon416nds

str_replace

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question