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
| 内容 | Path | Key | Value | |
|---|---|---|---|---|
| SoftBankメール保存ディレクトリ | \HKEY_LOCAL_MACHINE\Software\Arcsoft\ArcSoft MMS UA\Config\Folder | CannedTextFile | 「Program Files」を「Storage Card」 | |
| SoftBankメール保存ディレクトリ | \HKEY_LOCAL_MACHINE\Software\Arcsoft\ArcSoft MMS UA\Config\Folder | TemplatePath | 「Program Files」を「Storage Card」 | |
| SoftBankメール保存ディレクトリ | \HKEY_LOCAL_MACHINE\Software\Arcsoft\ArcSoft MMS UA\Config\Folder | UAContentsPath | 「Program Files」を「Storage Card」 | |
| IE初期ページ | \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AboutURLs | home_0409 | 任意URL | |
| IE初期ページ | \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AboutURLs | home_0411 | 任意URL | |
| Outlookメール新規作成時サイズ | \HKEY_LOCAL_MACHINE\Software\Microsoft\Inbox\RichEditHostFontSize | - | 9 | |
| HSDPAアイコン表示 | \HKEY_LOCAL_MACHINE\Software\OEM\RIL | EnableHSDPAIcon | 1 | |
| キャッシュ | \HKEY_LOCAL_MACHINE\System\GDI\GLYPHCACHE | limit | 2097152 | |
| キャッシュ | \HKEY_LOCAL_MACHINE\System\StorageManager\FATFS | CacheSize | 256 |
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 | |
| // | |
| // 画面出力時に、テンプレートをUTF-8からSJISに変換する。 | |
| // | |
| function filterUTF8ToSJIS($buff, &$smarty) { | |
| return mb_convert_encoding($buff,"SJIS","UTF-8"); | |
| } | |
| $smarty= new Smarty(); //Smartyオブジェクト生成 | |
| $smarty->register_outputfilter("filterUTF8ToSJIS"); //フィルターの登録 | |
| ini_set("default_charset", "Shift_JIS"); //PHPの設定default_charsetにSJISを設定 |
OlderNewer