沒有發現錯誤我有一個簡單的PHP程序,但我遇到這個錯誤:班「的NumberFormatter」在簡單的PHP程序
Class 'NumberFormatter' not found
我已經研究了#1類似的問題,但說實話,沒有人給一個具體的解決方案。其他人建議升級PHP的版本,其他人不要評論php.ini文件中的特定行,這些行都不適合我。
以下是我的代碼:我甚至使用了https://bugs.php.net的建議解決方案,但它仍然無效。
<!DOCTYPE html>
<html>
<body>
<?php
function writeMsg(){
$f = new \NumberFormatter("en", \NumberFormatter::SPELLOUT);
echo $f->format(1432);
}
writeMsg();
?>
</body>
</html>
您使用的是哪個版本的PHP?你[啓用/安裝國際擴展](http://stackoverflow.com/questions/15003199/php-5-3-seems-to-be-missing-intl-extension-by-default)? –
PHP版本5.5.27 – TwoThumbSticks