Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
401 views
in Technique[技术] by (71.8m points)

PHP printf adds something after formatted string

When im using printf,

printf("%.2f z?", 20.4);

it returns

20.40 z?9

but i want

20.40 z?

When i use sprintf("%.2f z?", 20.4) there is no problem.

z? is polish currency symbol. When i replace "?" with "l" i still have problem like this, so it looks like this is not related with encoding.

How can I use printf for currency correctly?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I got it.

I wrote:

echo printf(...);

instead of just:

printf(...);

After string produced by printf() i got that string length, which is value returned by printf (in fact - added number was 9 in case of 123.45 value, in 20.4 case it was number 8).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...