This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class kana2roma { | |
var $charset='utf-8'; | |
var $mode_Krows = 'k'; //か・く・こ(k or c) | |
var $mode_XArows = 'l'; //小文字ぁ行と「っ」( L or X) | |
var $mode_TYrows = 'ch'; //ち行+小文字や行(ty or ch or cy) | |
var $mode_SYrows = 'sh'; //し行+小文字や行(sy or sh) | |
var $mode_JYrows = 'j'; //じ行+小文字や行(j or zy or jy) | |
var $mode_Sstr = 'sh'; //し(s or sh or c) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class kana2roma { | |
var $charset='utf-8'; | |
var $mode_Krows = 'k'; //か・く・こ(k or c) | |
var $mode_XArows = 'l'; //小文字ぁ行と「っ」( L or X) | |
var $mode_TYrows = 'ch'; //ち行+小文字や行(ty or ch or cy) | |
var $mode_SYrows = 'sh'; //し行+小文字や行(sy or sh) | |
var $mode_JYrows = 'j'; //じ行+小文字や行(j or zy or jy) | |
var $mode_Sstr = 'sh'; //し(s or sh or c) |