ホームページ >バックエンド開発 >PHPチュートリアル >PHP は文字列をある文字から別の文字に変換する関数 Convert_cyr_string()
例
文字セットに変換する:
<?php $str = "Hello world! æøå"; echo $str . "<br>"; echo convert_cyr_string($str,'w','a'); ?>
定義と使用法
convert_cyr_string()関数は、文字列をあるキリル文字セットから別の
文字セットに変換します。 サポートされているキリル文字セットは次のとおりです: k - koi8-rw - windows-1251i - iso8859-5a - x-cp866d - x-cp866注: この関数はバイナリ安全
です。構文
convert_cyr_string(string,from,to)
パラメータ。変換する文字列を指定します。 から 必須。ソースのキリル文字セットを指定する文字。 は必須です。ターゲットのキリル文字セットを指定する文字。 技術的な詳細戻り値:
変換された文字列を返します。
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 中国語 Web サイトの他の関連記事を参照してください。