php把字串由一種字元轉換成另一種的函數convert_cyr_string()

來源:互聯網
上載者:User

執行個體

把字串由一種字元集轉換成另一種:

<?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-5

a - x-cp866

d - x-cp866

m - 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: GeorgeChild node: JohnChild node: ReminderChild node: Don't forget the meeting!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.