私は長い時間をかけて見てきましたが、すべての選択肢とmb_関数は機能していません。私のサーバーの部分に必要な情報があれば、それを証明することができます。UTF-8 ucfirst does not work
答えて
これは動作します(私は私自身のプロジェクトでそれを使用している、それがない知っている)
function mb_ucfirst($string, $encoding='UTF-8') {
$firstChar = mb_substr($string, 0, 1, $encoding);
$then = mb_substr($string, 1, mb_strlen($string, $encoding)-1, $encoding);
return mb_strtoupper($firstChar, $encoding) . $then;
} // end function mb_ucfirst
mb_ucfirst($string);
完全な例として、それを使用してください:
<?php
$string = mb_ucfirst("ååååeee");
echo $string;
function mb_ucfirst($string, $encoding='UTF-8') {
$firstChar = mb_substr($string, 0, 1, $encoding);
$then = mb_substr($string, 1, mb_strlen($string, $encoding)-1, $encoding);
return mb_strtoupper($firstChar, $encoding) . $then;
} // end function mb_ucfirst
?>
私はそれを使用すると、ページはちょうど白のままです。 \t '$ string = mb_ucfirst("ååååeee "); \t echo $ string; ' – Litenhundvilikkeinn
次に、コードに他の問題があります。それは簡単です。ログを確認します。 – junkfoodjunkie
完全な例で更新されました。 – junkfoodjunkie
- 1. event.stopPropagation()does not work
- 2. Process.GetProcessessByName does not work
- 3. Offline.js does not work
- 4. Websocketハンドシェイクdoes not work
- 5. ObjectInputStream(socket.getInputStream()); does not work
- 6. SQLite Insert does not work
- 7. Obsusculated code does not work
- 8. DSpace loginAs does not work
- 9. $ translatePartialLoader prefferdLanguage does not work
- 10. setError(R.string.bla)does not work?
- 11. Rails、rake does not work
- 12. jquery .html()does not work
- 13. セルフホストASP.NET 2.0:TagHelper does not work
- 14. 選択リストデフォルト値does not work
- 15. tabwidget does not work mono c#
- 16. 初期値does not work angucomplete
- 17. ngx-bootstrap datepicker does not work
- 18. HTML/Javascript Click counter does not work
- 19. yii2 swiftmailer link does not work
- 20. イオンネイティブページ遷移does not work
- 21. Rails 5 belongs_to_required_by_default does not work
- 22. wordpress、paginate function does not work(カスタムテーマ)
- 23. python throw ajax、import does not work
- 24. Webview back button(goback)does not work
- 25. saltstack multiple gitfs_remotes does not work
- 26. Google maps infowindow does not work
- 27. 私のハッシュテーブルdoes not work
- 28. jquery change display does not work
- 29. contacts.find does not work andandriod 4(phonegap)
- 30. Jmeter beanscript get currentTime does not work
は、任意のコードにしましたシェア? – rackemup420
まあ、何も動作しません。私はucfirst、ucwordsなどを試しましたが、mb_ucfirst上のいくつかのstackoverflowスレッドを見つけました。ユーザが作成した関数でさえ、何も動作しないようですので、今は持っていません。 – Litenhundvilikkeinn
文字列 "æsomething"を "Æsomething"にしたい – Litenhundvilikkeinn