ucwords()
是 PHP 中的一個內置函數,用于將字符串中每個單詞的首字母轉換為大寫。這個函數在 PHP 5 及更高版本中是兼容的。
不過,如果你需要確保更廣泛的瀏覽器和操作系統兼容性,你可以使用以下代碼來檢查 ucwords()
函數的可用性:
if (function_exists('ucwords')) {
// ucwords() is available, you can use it here
} else {
// ucwords() is not available, you might need to use an alternative
}
這段代碼首先檢查 ucwords()
函數是否存在,如果存在則使用它,否則你需要尋找其他方法來實現相同的功能。