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 | |
| /** | |
| * クレジットカード ユーティリティクラス | |
| * | |
| * カード会社の判別やチェックディジットの検証を行うユーティリティクラス | |
| * | |
| * @see http://en.wikipedia.org/wiki/Bank_card_number | |
| * @see http://www.ee.unb.ca/tervo/ee4253/luhn.shtml | |
| */ |
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 | |
| defined('BASEPATH') OR exit('No direct script access allowed'); | |
| //==================================================================== | |
| // Twigテンプレートクラス | |
| //==================================================================== | |
| // | |
| // Twigテンプレートを用いたレンダリングエンジンのCI向け実装。 | |
| // Smarty同等の方法で画面出力が可能。初期化方法は次の通り。 | |
| // |
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
| --[[ | |
| DDNSのIPアップデート | |
| *** YAMAHAルーター専用 *** | |
| PPPoEで設定されたlocal側のIPアドレスを取得し、既存IPアドレスと異なれば取得したIPアドレスでDDNSを更新する。 | |
| IPアドレスが同じであれば更新はしない。interval_watch * interval_update(秒)で設定された期間更新されない | |
| 場合、強制的にIPアドレスを更新する。 |