Public 変数 | |
typedef_sleep | sleep |
typedef_out | out |
typedef_outf | outf |
typedef_set_error | set_error |
typedef_commond | commond |
typedef_access_init | access_init |
typedef_access_get | access_get |
typedef_access_post | access_post |
typedef_filter_htmltag | filter_htmltag |
typedef_filter_htmlclass | filter_htmlclass |
typedef_filter_htmlclass | filter_htmlid |
typedef_pickup_htmlhidden | pickup_htmlhidden |
typedef_pickup_htmlsubmit | pickup_htmlsubmit |
typedef_pickup_htmlinputselect | pickup_htmlinputselect |
typedef_string_concat | string_concat |
typedef_string_trim | string_trim |
typedef_string_setvalue | string_setvalue |
typedef_string_getvalue | string_getvalue |
typedef_string_deletekey | string_deletekey |
typedef_string_substr | string_substr |
typedef_string_euc2sjis | string_euc2sjis |
typedef_string_utf82sjis | string_utf82sjis |
typedef_access_get PluginMethod::access_get |
ルーターへの GET アクセス。
typedef_access_init PluginMethod::access_init |
ルーターアクセスの初期化。失敗は 0。失敗して継続することは出来ません。
typedef_access_post PluginMethod::access_post |
ルーターへの POST アクセス。
typedef_commond PluginMethod::commond |
実行 command の文字列を取得。unknown コマンドの時、plugin 独自に拡張を行う時にも使えます。
typedef_filter_htmlclass PluginMethod::filter_htmlclass |
HTML タグクラス(class=)による文字列フィルターを行う。
typedef_filter_htmlclass PluginMethod::filter_htmlid |
HTML タグクラス(id=)による文字列フィルターを行う。
typedef_filter_htmltag PluginMethod::filter_htmltag |
HTML タグによる文字列フィルターを行う。
typedef_out PluginMethod::out |
plugin 画面出力。改行コードも出力されます。like Windows API 'puts()'
typedef_outf PluginMethod::outf |
plugin 書式指定付き画面出力。改行コードは含まれません。like Windows API 'printf()'
typedef_pickup_htmlhidden PluginMethod::pickup_htmlhidden |
HTML input hidden から '[key]=[value]&' の形式でピックアップを行う。
typedef_pickup_htmlinputselect PluginMethod::pickup_htmlinputselect |
HTML input, select から '[key]=[value]&' の形式でピックアップを行う。
typedef_pickup_htmlsubmit PluginMethod::pickup_htmlsubmit |
HTML input submit から '[key]=[value]&' の形式でピックアップを行う。
typedef_set_error PluginMethod::set_error |
エラーが発生したときの plugin 側メッセージを設定。
typedef_sleep PluginMethod::sleep |
スリープ処理を行う。like Windows API 'Sleep()'
typedef_string_concat PluginMethod::string_concat |
文字列の連結を行った文字列を返します。
typedef_string_deletekey PluginMethod::string_deletekey |
'[key]=[value]&' 形式の文字列から key 値を削除します。
typedef_string_euc2sjis PluginMethod::string_euc2sjis |
euc から sjis に変換した文字列を取得します。
typedef_string_getvalue PluginMethod::string_getvalue |
'[key]=[value]&' 形式の文字列から value 値を取得します。
typedef_string_setvalue PluginMethod::string_setvalue |
'[key]=[value]&' 形式の文字列に value 値を更新します。新規追加は出来ません。
typedef_string_substr PluginMethod::string_substr |
文字列を抜き出します。
typedef_string_trim PluginMethod::string_trim |
文字列の前後のゴミを取り除いた文字列を返します。
typedef_string_utf82sjis PluginMethod::string_utf82sjis |
utf8 から sjis に変換した文字列を取得します。