在PHP 中替換Microsoft 編碼的引號
在許多應用程式中,標準單引號和雙引號(' 和")用於分隔字串但是,Microsoft Word 通常將這些引號編碼為其各自的Unicode 等效項(“ ”和“ 」),這可能會導致導入時出現編碼問題。
使用iconv 的解決方案
要解決此問題,一種有效的方法是使用PHP 中的iconv() 函數。 iconv() 函數將輸入字串從UTF-8 編碼轉換為ASCII 編碼,使用//TRANSLIT 參數確保字元替換。 🎜>使用iconv 的優點
// Input string with Microsoft-encoded quotes $input = "“This is a sample string with encoded quotes.” ’"; // Replace encoded quotes with standard quotes using iconv() $output = iconv('UTF-8', 'ASCII//TRANSLIT', $input); // Output string with standard quotes echo $output; // Output: "This is a sample string with encoded quotes." '
比較為了使用正規表示式或關聯數組,iconv()函數提供了幾個優點:
簡單:
只需一行程式碼。由內建的高效執行在功能上。以上是如何替換 PHP 字串中 Microsoft 編碼的引號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!