setlocale(LC_MONETARY, 'en_GB.UTF-8');
imagestring( $my_img, 4, $colC, $row1, money_format('%(#5n', $rates[0][0]), $text_colour );
...
...
...
header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $line_colour );
imagecolordeallocate( $text_colour );
imagecolordeallocate( $background );
imagedestroy( $my_img );
一切正常,但是我有一个奇怪的错误......
货币符号看起来不对。它没有显示£符号,而是显示顶部带有插入符号的A ,看起来像英镑符号的下半部分。
所以我尝试删除 .UTF-8 并且带有插入符号的A消失了,但它仍然只显示井号的下半部分。
我想要的只是一个£符号。有人可以帮忙吗???