實例
<?php $str = "Hello world! æøå"; echo $str . "<br>"; echo convert_cyr_string($str,'w','a'); ?>
定義與用法
#convert_cyr_string() 函數把字串由一種Cyrillic 字元集轉換成另一種。
被支援的Cyrillic 字元集是:
k - koi8-r
w - windows-1251
##i - iso8859-5a - x-cp866d - x-cp866m - x-mac-cyrillic註解:此函數是二進位
安全的。
語法convert_cyr_string(string,from,to)
參數
說明
string 必要。規定要轉換的字串。 from 必要。一個規定了來源 Cyrillic 字元集的字元。 to 必要。一個規定了目標 Cyrillic 字元集的字元。 技術細節傳回值:傳回已轉換的字串。
PHP 版本:4+
convert_cyr_string實例XML 檔案:<?xml version="1.0" encoding="ISO-8859-1"?> <note> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don't forget the meeting!</body> </note>
PHP 程式碼:
<?php $xml = simplexml_load_file("test.xml"); foreach ($xml->children() as $child) { echo "Child node: " . $child; } ?>
輸出類似:
Child node: George Child node: John Child node: Reminder Child node: Don't forget the meeting!
以上是php把字串由一種字元轉換成另一種的函數convert_cyr_string()的詳細內容。更多資訊請關注PHP中文網其他相關文章!