📄 bug30638.phpt
字号:
--TEST--Bug #30638 (localeconv returns wrong LC_NUMERIC settings)--SKIPIF--<?php # try to activate a german localeif (setlocale(LC_NUMERIC, "de_DE", "de", "german", "ge") === FALSE) { print "skip";}?>--FILE--<?php # activate the german localesetlocale(LC_NUMERIC, "de_DE", "de", "german", "ge");$lc = localeconv();printf("decimal_point: %s\n", $lc['decimal_point']);printf("thousands_sep: %s\n", $lc['thousands_sep']);?>--EXPECT--decimal_point: ,thousands_sep: .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -