-
Notifications
You must be signed in to change notification settings - Fork 0
/
php.khp
4256 lines (4256 loc) · 494 KB
/
php.khp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; PHP マニュアル 2009-03-06版より生成
; (c) 1997-2009 the PHP Documentation Group
apc_add /// bool apc_add ( string $key , mixed $var [, int $ttl= 0 ] )\n変数をデータ領域にキャッシュする
apc_cache_info /// array apc_cache_info ([ string $cache_type [, bool $limited= false ]] )\nAPC のデータから、キャッシュされた情報を取得する
apc_clear_cache /// bool apc_clear_cache ([ string $cache_type ] )\nAPC キャッシュをクリアする
apc_compile_file /// bool apc_compile_file ( string $filename )\nファイルをバイトコードキャッシュに保存し、すべてのフィルタをバイパスする
apc_define_constants /// bool apc_define_constants ( string $key , array $constants [, bool $case_sensitive= true ] )\n定数の組を定義し、それを取得あるいは一括定義する
apc_delete /// bool apc_delete ( string $key )\n格納されている変数をキャッシュから取り除く
apc_fetch /// mixed apc_fetch ( string $key [, bool &$success ] )\n格納されている変数をキャッシュから取得する
apc_load_constants /// bool apc_load_constants ( string $key [, bool $case_sensitive= true ] )\n定数群をキャッシュから読み込む
apc_sma_info /// array apc_sma_info ([ bool $limited= false ] )\nAPC の共有メモリ割り当てに関する情報を取得する
apc_store /// bool apc_store ( string $key , mixed $var [, int $ttl= 0 ] )\n変数をデータ領域にキャッシュする
apd_breakpoint /// bool apd_breakpoint ( int $debug_level )\nインタプリタの処理を停止し、ソケットからの CR を待つ
apd_callstack /// array apd_callstack ( void )\n現在のコールスタックを配列で返す
apd_clunk /// void apd_clunk ( string $warning [, string $delimiter ] )\n警告とコールスタックをスローする
apd_continue /// bool apd_continue ( int $debug_level )\nインタプリタを再開する
apd_croak /// void apd_croak ( string $warning [, string $delimiter ] )\nエラーとコールスタックをスローし、終了する
apd_dump_function_table /// void apd_dump_function_table ( void )\n現在の関数テーブルを出力する
apd_dump_persistent_resources /// array apd_dump_persistent_resources ( void )\nすべての持続的なリソースを配列で返す
apd_dump_regular_resources /// array apd_dump_regular_resources ( void )\n現在のすべての一般リソースを配列で返す
apd_echo /// bool apd_echo ( string $output )\nデバッグ用ソケットに表示する
apd_get_active_symbols /// array apd_get_active_symbols ( void )\nローカルスコープ内の現在の変数名を配列で取得する
apd_set_pprof_trace /// string apd_set_pprof_trace ([ string $dump_directory [, string $fragment= "pprof" ]] )\nセッションのデバッグを開始する
apd_set_session_trace_socket /// bool apd_set_session_trace_socket ( string $tcp_server , int $socket_type , int $port , int $debug_level )\nリモートセッションのデバッグを開始する
apd_set_session_trace /// void apd_set_session_trace ( int $debug_level [, string $dump_directory ] )\nセッションのデバッグを開始する
apd_set_session /// void apd_set_session ( int $debug_level )\n現在のデバッグレベルを変更あるいは設定する
override_function /// bool override_function ( string $function_name , string $function_args , string $function_code )\n組み込みの関数を上書きする
rename_function /// bool rename_function ( string $original_name , string $new_name )\nグローバルの関数テーブルで関数名を変更する
bcompiler_load_exe /// bool bcompiler_load_exe ( string $filename )\nbcompiler の exe ファイルを読み込み、クラスを生成する
bcompiler_load /// bool bcompiler_load ( string $filename )\nbz 圧縮されたファイルを読み込み、クラスを生成する
bcompiler_parse_class /// bool bcompiler_parse_class ( string $class , string $callback )\nクラスのバイトコードを読み込み、ユーザ関数をコールする
bcompiler_read /// bool bcompiler_read ( resource $filehandle )\nファイルハンドルを読み込み、クラスを生成する
bcompiler_write_class /// bool bcompiler_write_class ( resource $filehandle , string $className [, string $extends ] )\n定義したクラスをバイトコードとして書き込む
bcompiler_write_constant /// bool bcompiler_write_constant ( resource $filehandle , string $constantName )\n定義した定数をバイトコードとして書き込む
bcompiler_write_exe_footer /// bool bcompiler_write_exe_footer ( resource $filehandle , int $startpos )\n開始位置および exe 形式ファイルのフッタを書き込む
bcompiler_write_file /// bool bcompiler_write_file ( resource $filehandle , string $filename )\nphp ソースファイルをバイトコードとして書き込む
bcompiler_write_footer /// bool bcompiler_write_footer ( resource $filehandle )\nコンパイルされたデータの終了を示す文字 \x00 を書き込む
bcompiler_write_function /// bool bcompiler_write_function ( resource $filehandle , string $functionName )\n定義した関数をバイトコードとして書き込む
bcompiler_write_functions_from_file /// bool bcompiler_write_functions_from_file ( resource $filehandle , string $fileName )\nファイル内で定義されているすべての関数をバイトコードとして書き込む
bcompiler_write_header /// bool bcompiler_write_header ( resource $filehandle [, string $write_ver ] )\nbcompiler のヘッダを書き込む
bcompiler_write_included_filename /// bool bcompiler_write_included_filename ( resource $filehandle , string $filename )\nインクルードされたファイルをバイトコードとして書き込む
debug_backtrace /// array debug_backtrace ([ bool $provide_object= true ] )\nバックトレースを生成する
debug_print_backtrace /// void debug_print_backtrace ( void )\nバックトレースを表示する
error_get_last /// array error_get_last ( void )\n最後に発生したエラーを取得する
error_log /// bool error_log ( string $message [, int $message_type= 0 [, string $destination [, string $extra_headers ]]] )\nエラーメッセージを送信する
error_reporting /// int error_reporting ([ int $level ] )\n出力する PHP エラーの種類を設定する
restore_error_handler /// bool restore_error_handler ( void )\n以前のエラーハンドラ関数を回復する
restore_exception_handler /// bool restore_exception_handler ( void )\n以前の例外ハンドラ関数を回復する
set_error_handler /// mixed set_error_handler ( callback $error_handler [, int $error_types= E_ALL | E_STRICT ] )\nユーザ定義のエラーハンドラ関数を設定する
set_exception_handler /// string set_exception_handler ( callback $exception_handler )\nユーザ定義の例外ハンドラ関数を設定する
trigger_error /// bool trigger_error ( string $error_msg [, int $error_type= E_USER_NOTICE ] )\nユーザレベルのエラー/警告/通知メッセージを生成する
user_error /// trigger_error のエイリアス
inclued_get_data /// array inclued_get_data ( void )\ninclued データを取得する
assert_options /// mixed assert_options ( int $what [, mixed $value ] )\n様々な assert フラグを設定/取得する
assert /// bool assert ( mixed $assertion )\nassertion が FALSE であるかどうかを調べる
dl /// int dl ( string $library )\n実行時に PHP 拡張モジュールをロードする
extension_loaded /// bool extension_loaded ( string $name )\nある拡張機能がロードされているかどうかを調べる
gc_collect_cycles /// int gc_collect_cycles ( void )\nすべての既存ガベージサイクルを強制的に収集する
gc_disable /// void gc_disable ( void )\n循環参照コレクタを無効にする
gc_enable /// void gc_enable ( void )\n循環参照コレクタを有効にする
gc_enabled /// bool gc_enabled ( void )\n循環参照コレクタの状態を返す
get_cfg_var /// string get_cfg_var ( string $option )\nPHP 設定オプションの値を取得する
get_current_user /// string get_current_user ( void )\n現在の PHP スクリプトの所有者の名前を取得する
get_defined_constants /// array get_defined_constants ([ bool $categorize ] )\nすべての定数の名前とその値を連想配列として返す
get_extension_funcs /// array get_extension_funcs ( string $module_name )\nあるモジュールの関数名を配列として返す
get_include_path /// string get_include_path ( void )\n現在の include_path 設定オプションを取得する
get_included_files /// array get_included_files ( void )\ninclude または require で読み込まれたファイルの名前を配列として返す
get_loaded_extensions /// array get_loaded_extensions ([ bool $zend_extensions= false ] )\nコンパイル/ロードされている全てのモジュールの名前を配列として返す
get_magic_quotes_gpc /// int get_magic_quotes_gpc ( void )\nmagic quotes gpc の現在の設定を得る
get_magic_quotes_runtime /// int get_magic_quotes_runtime ( void )\nmagic_quotes_runtime の現在アクティブな設定値を取得する
get_required_files /// get_included_files のエイリアス
getenv /// string getenv ( string $varname )\n環境変数の値を取得する
getlastmod /// int getlastmod ( void )\n最終更新時刻を取得する
getmygid /// int getmygid ( void )\nPHP スクリプトの所有者の GID を得る
getmyinode /// int getmyinode ( void )\n現在のスクリプトの inode を取得する
getmypid /// int getmypid ( void )\nPHP のプロセス ID を取得する
getmyuid /// int getmyuid ( void )\nPHP スクリプト所有者のユーザ ID を取得する
getopt /// array getopt ( string $options [, array $longopts ] )\nコマンドライン引数のリストからオプションを取得する
getrusage /// array getrusage ([ int $who= 0 ] )\nカレントリソースの使用に関する情報を得る
ini_alter /// ini_set のエイリアス
ini_get_all /// array ini_get_all ([ string $extension [, bool $details= true ]] )\nすべての設定オプションを得る
ini_get /// string ini_get ( string $varname )\n設定オプションの値を得る
ini_restore /// void ini_restore ( string $varname )\n設定オプションの値を元に戻す
ini_set /// string ini_set ( string $varname , string $newvalue )\n設定オプションの値を設定する
main /// main のダミー
memory_get_peak_usage /// int memory_get_peak_usage ([ bool $real_usage= false ] )\nPHP によって割り当てられたメモリの最大値を返す
memory_get_usage /// int memory_get_usage ([ bool $real_usage= false ] )\nPHP に割り当てられたメモリの量を返す
php_ini_loaded_file /// string php_ini_loaded_file ( void )\n読み込まれた php.ini ファイルのパスを取得する
php_ini_scanned_files /// string php_ini_scanned_files ( void )\n追加の ini ディレクトリにある .ini ファイルのリストを取得する
php_logo_guid /// string php_logo_guid ( void )\nロゴの guid を取得する
php_sapi_name /// string php_sapi_name ( void )\nウェブサーバと PHP の間のインターフェイスの型を返す
php_uname /// string php_uname ([ string $mode= "a" ] )\nPHP が稼動しているオペレーティングシステムに関する情報を返す
phpcredits /// bool phpcredits ([ int $flag= CREDITS_ALL ] )\nPHP に関するクレジットを出力する
phpinfo /// bool phpinfo ([ int $what= INFO_ALL ] )\nいろいろな PHP 情報を出力する
phpversion /// string phpversion ([ string $extension ] )\n現在の PHP バージョンを取得する
putenv /// bool putenv ( string $setting )\n環境変数の値を設定する
restore_include_path /// void restore_include_path ( void )\ninclude_path 設定オプションの値を元に戻す
set_include_path /// string set_include_path ( string $new_include_path )\ninclude_path 設定オプションをセットする
set_magic_quotes_runtime /// bool set_magic_quotes_runtime ( bool $new_setting )\nmagic_quotes_runtime の現在アクティブな設定をセットする
set_time_limit /// void set_time_limit ( int $seconds )\n実行時間の最大値を制限する
sys_get_temp_dir /// string sys_get_temp_dir ( void )\n一時ファイル用に使用されるディレクトリのパスを返す
version_compare /// mixed version_compare ( string $version1 , string $version2 [, string $operator ] )\nふたつの "PHP 標準" バージョン番号文字列を比較する
zend_logo_guid /// string zend_logo_guid ( void )\nZend guid を取得する
zend_thread_id /// int zend_thread_id ( void )\n現在のスレッドの一意な ID を返す
zend_version /// string zend_version ( void )\n現在の Zend Engine のバージョンを取得する
overload /// void overload ( string $class_name )\nクラスのプロパティおよびメソッドに関してオーバーロードを可能にする
flush /// void flush ( void )\n出力バッファをフラッシュする
ob_clean /// void ob_clean ( void )\n出力バッファをクリア(消去)する
ob_end_clean /// bool ob_end_clean ( void )\n出力用バッファをクリア(消去)し、出力のバッファリングをオフにする
ob_end_flush /// bool ob_end_flush ( void )\n出力用バッファをフラッシュ(送信)し、出力のバッファリングをオフにする
ob_flush /// void ob_flush ( void )\n出力バッファをフラッシュ(送信)する
ob_get_clean /// string ob_get_clean ( void )\n現在のバッファの内容を取得し、出力バッファを削除する
ob_get_contents /// string ob_get_contents ( void )\n出力用バッファの内容を返す
ob_get_flush /// string ob_get_flush ( void )\n出力バッファをフラッシュし、その内容を文字列として返した後で出力バッファリングを終了する
ob_get_length /// int ob_get_length ( void )\n出力バッファの長さを返す
ob_get_level /// int ob_get_level ( void )\n出力バッファリング機構のネストレベルを返す
ob_get_status /// array ob_get_status ([ bool $full_status = FALSE ] )\n出力バッファのステータスを取得する
ob_gzhandler /// string ob_gzhandler ( string $buffer , int $mode )\n出力バッファを gzip 圧縮するための ob_start コールバック関数
ob_implicit_flush /// void ob_implicit_flush ([ int $flag ] )\n自動フラッシュをオンまたはオフにする
ob_list_handlers /// array ob_list_handlers ( void )\n使用中の出力ハンドラの一覧を取得する
ob_start /// bool ob_start ([ callback $output_callback [, int $chunk_size [, bool $erase ]]] )\n出力のバッファリングを有効にする
output_add_rewrite_var /// bool output_add_rewrite_var ( string $name , string $value )\nURL リライタの値を追加する
output_reset_rewrite_vars /// bool output_reset_rewrite_vars ( void )\nURL リライタの値をリセットする
runkit_class_adopt /// bool runkit_class_adopt ( string $classname , string $parentname )\nある基底クラスを、他のクラスを継承させたクラスに変換する。親クラスの適切なメソッドを追加する
runkit_class_emancipate /// bool runkit_class_emancipate ( string $classname )\n他のクラスを継承しているクラスから継承関係を解消し、 親クラスから継承しているメソッドを取り除く
runkit_constant_add /// bool runkit_constant_add ( string $constname , mixed $value )\ndefine() と同じだが、クラス定数も指定可能
runkit_constant_redefine /// bool runkit_constant_redefine ( string $constname , mixed $newvalue )\n定義済みの定数を再定義する
runkit_constant_remove /// bool runkit_constant_remove ( string $constname )\n定義済みの定数を削除する
runkit_function_add /// bool runkit_function_add ( string $funcname , string $arglist , string $code )\n新しい関数を追加する。create_function と同じ
runkit_function_copy /// bool runkit_function_copy ( string $funcname , string $targetname )\n関数を別の名前でコピーする
runkit_function_redefine /// bool runkit_function_redefine ( string $funcname , string $arglist , string $code )\n関数の定義を新しい実装で置き換える
runkit_function_remove /// bool runkit_function_remove ( string $funcname )\n関数の定義を削除する
runkit_function_rename /// bool runkit_function_rename ( string $funcname , string $newname )\n関数名を変更する
runkit_import /// bool runkit_import ( string $filename [, int $flags= RUNKIT_IMPORT_CLASS_METHODS ] )\nファイルから関数やクラスの定義を読み込み、必要に応じて書き換える
runkit_lint_file /// bool runkit_lint_file ( string $filename )\n指定したファイルの PHP 文法をチェックする
runkit_lint /// bool runkit_lint ( string $code )\n指定した PHP コードの文法をチェックする
runkit_method_add /// bool runkit_method_add ( string $classname , string $methodname , string $args , string $code [, int $flags= RUNKIT_ACC_PUBLIC ] )\n指定したクラスに、新しいメソッドを動的に追加する
runkit_method_copy /// bool runkit_method_copy ( string $dClass , string $dMethod , string $sClass [, string $sMethod ] )\nあるクラスのメソッドを別のクラスにコピーする
runkit_method_redefine /// bool runkit_method_redefine ( string $classname , string $methodname , string $args , string $code [, int $flags= RUNKIT_ACC_PUBLIC ] )\n指定されたメソッドのコードを動的に変更する
runkit_method_remove /// bool runkit_method_remove ( string $classname , string $methodname )\n指定したメソッドを動的に削除する
runkit_method_rename /// bool runkit_method_rename ( string $classname , string $methodname , string $newname )\n指定したメソッドの名前を動的に変更する
runkit_return_value_used /// bool runkit_return_value_used ( void )\n現在の関数の返り値が使用されているかどうかを調べる
runkit_sandbox_output_handler /// mixed runkit_sandbox_output_handler ( object $sandbox [, mixed $callback ] )\nサンドボックス内での出力を取得・処理するための関数を指定する
runkit_superglobals /// array runkit_superglobals ( void )\n登録されているスーパーグローバルを、数値添字の配列で返す
id3_get_frame_long_name /// string id3_get_frame_long_name ( string $frameId )\nID3v2 フレームの長い名前を取得する
id3_get_frame_short_name /// string id3_get_frame_short_name ( string $frameId )\nID3v2 フレームの短い名前を取得する
id3_get_genre_id /// int id3_get_genre_id ( string $genre )\nジャンルの ID を取得する
id3_get_genre_list /// array id3_get_genre_list ( void )\n使用可能なジャンルの一覧を取得する
id3_get_genre_name /// string id3_get_genre_name ( int $genre_id )\nジャンル ID に対応する名前を取得する
id3_get_tag /// array id3_get_tag ( string $filename [, int $version= ID3_BEST ] )\nID3 タグに含まれるすべての情報を取得する
id3_get_version /// int id3_get_version ( string $filename )\nID3 タグのバージョンを取得する
id3_remove_tag /// bool id3_remove_tag ( string $filename [, int $version= ID3_V1_0 ] )\n既存の ID3 タグを削除する
id3_set_tag /// bool id3_set_tag ( string $filename , array $tag [, int $version= ID3_V1_0 ] )\nID3 タグに格納されている情報を更新する
openal_buffer_create /// resource openal_buffer_create ( void )\nOpenAL バッファを生成する
openal_buffer_data /// bool openal_buffer_data ( resource $buffer , int $format , string $data , int $freq )\nバッファのデータを読み込む
openal_buffer_destroy /// bool openal_buffer_destroy ( resource $buffer )\nOpenAL バッファを削除する
openal_buffer_get /// int openal_buffer_get ( resource $buffer , int $property )\nOpenAL バッファのプロパティを取得する
openal_buffer_loadwav /// bool openal_buffer_loadwav ( resource $buffer , string $wavfile )\n.wav ファイルをバッファに読み込む
openal_context_create /// resource openal_context_create ( resource $device )\n音声処理コンテキストを作成する
openal_context_current /// bool openal_context_current ( resource $context )\n指定したコンテキストを現在のコンテキストにする
openal_context_destroy /// bool openal_context_destroy ( resource $context )\nコンテキストを削除する
openal_context_process /// bool openal_context_process ( resource $context )\n指定したコンテキストを処理する
openal_context_suspend /// bool openal_context_suspend ( resource $context )\n指定したコンテキストをサスペンドする
openal_device_close /// bool openal_device_close ( resource $device )\nOpenAL デバイスを閉じる
openal_device_open /// resource openal_device_open ([ string $device_desc ] )\nOpenAL 音声レイヤを初期化する
openal_listener_get /// mixed openal_listener_get ( int $property )\nリスナーのプロパティを取得する
openal_listener_set /// bool openal_listener_set ( int $property , mixed $setting )\nリスナーのプロパティを設定する
openal_source_create /// resource openal_source_create ( void )\nソースリソースを生成する
openal_source_destroy /// bool openal_source_destroy ( resource $source )\nソースリソースを削除する
openal_source_get /// mixed openal_source_get ( resource $source , int $property )\nOpenAL ソースのプロパティを取得する
openal_source_pause /// bool openal_source_pause ( resource $source )\nソースを一時停止する
openal_source_play /// bool openal_source_play ( resource $source )\nソースの再生を開始する
openal_source_rewind /// bool openal_source_rewind ( resource $source )\nソースを巻き戻す
openal_source_set /// bool openal_source_set ( resource $source , int $property , mixed $setting )\nソースのプロパティを設定する
openal_source_stop /// bool openal_source_stop ( resource $source )\nソースの再生を停止する
openal_stream /// resource openal_stream ( resource $source , int $format , int $rate )\nソースのストリーム再生を開始する
kadm5_chpass_principal /// bool kadm5_chpass_principal ( resource $handle , string $principal , string $password )\nプリンシパルのパスワードを変更する
kadm5_create_principal /// bool kadm5_create_principal ( resource $handle , string $principal [, string $password [, array $options ]] )\n指定したパラメータで、kerberos のプリンシパルを作成する
kadm5_delete_principal /// bool kadm5_delete_principal ( resource $handle , string $principal )\nkerberos プリンシパルを削除する
kadm5_destroy /// bool kadm5_destroy ( resource $handle )\n管理サーバへの接続を閉じ、関連するすべてのリソースを開放する
kadm5_flush /// bool kadm5_flush ( resource $handle )\nKerberos データベースに対するすべての変更を取り消す
kadm5_get_policies /// array kadm5_get_policies ( resource $handle )\nKerberos データベースから、すべてのポリシーを取得する
kadm5_get_principal /// array kadm5_get_principal ( resource $handle , string $principal )\nKerberos データベースから、プリンシパルのエントリを取得する
kadm5_get_principals /// array kadm5_get_principals ( resource $handle )\nKerberos データベースから、すべてのプリンシパルを取得する
kadm5_init_with_password /// resource kadm5_init_with_password ( string $admin_server , string $realm , string $principal , string $password )\nKADM5 ライブラリへの接続をオープンし、必要なステータス情報を初期化する
kadm5_modify_principal /// bool kadm5_modify_principal ( resource $handle , string $principal , array $options )\nkerberos プリンシパルを、指定したパラメータで変更する
radius_acct_open /// resource radius_acct_open ( void )\n課金用の Radius ハンドルを作成する
radius_add_server /// bool radius_add_server ( resource $radius_handle , string $hostname , int $port , string $secret , int $timeout , int $max_tries )\nサーバを追加する
radius_auth_open /// resource radius_auth_open ( void )\n認証用の Radius ハンドルを作成する
radius_close /// bool radius_close ( resource $radius_handle )\nすべてのリソースを開放する
radius_config /// bool radius_config ( resource $radius_handle , string $file )\n指定した設定ファイルをライブラリに読み込ませる
radius_create_request /// bool radius_create_request ( resource $radius_handle , int $type )\n課金あるいは認証のリクエストを作成する
radius_cvt_addr /// string radius_cvt_addr ( string $data )\n生データを IP アドレスに変換する
radius_cvt_int /// int radius_cvt_int ( string $data )\n生データを整数に変換する
radius_cvt_string /// string radius_cvt_string ( string $data )\n生データを文字列に変換する
radius_demangle_mppe_key /// string radius_demangle_mppe_key ( resource $radius_handle , string $mangled )\n変形されたデータから mppe キーを得る
radius_demangle /// string radius_demangle ( resource $radius_handle , string $mangled )\nデータを復元する
radius_get_attr /// mixed radius_get_attr ( resource $radius_handle )\n属性を取得する
radius_get_vendor_attr /// array radius_get_vendor_attr ( string $data )\nベンダ固有の属性を取得する
radius_put_addr /// bool radius_put_addr ( resource $radius_handle , int $type , string $addr )\nIP アドレス属性を設定する
radius_put_attr /// bool radius_put_attr ( resource $radius_handle , int $type , string $value )\nバイナリ属性を設定する
radius_put_int /// bool radius_put_int ( resource $radius_handle , int $type , int $value )\n整数属性を設定する
radius_put_string /// bool radius_put_string ( resource $radius_handle , int $type , string $value )\n文字列属性を設定する
radius_put_vendor_addr /// bool radius_put_vendor_addr ( resource $radius_handle , int $vendor , int $type , string $addr )\nベンダ固有の IP アドレス属性を設定する
radius_put_vendor_attr /// bool radius_put_vendor_attr ( resource $radius_handle , int $vendor , int $type , string $value )\nベンダ固有のバイナリ属性を設定する
radius_put_vendor_int /// bool radius_put_vendor_int ( resource $radius_handle , int $vendor , int $type , int $value )\nベンダ固有の整数属性を設定する
radius_put_vendor_string /// bool radius_put_vendor_string ( resource $radius_handle , int $vendor , int $type , string $value )\nベンダ固有の文字列属性を設定する
radius_request_authenticator /// string radius_request_authenticator ( resource $radius_handle )\nリクエスト認証子を返す
radius_send_request /// int radius_send_request ( resource $radius_handle )\nリクエストを送信し、応答を待つ
radius_server_secret /// string radius_server_secret ( resource $radius_handle )\n共有秘密鍵を返す
radius_strerror /// string radius_strerror ( resource $radius_handle )\nエラーメッセージを返す
cal_days_in_month /// int cal_days_in_month ( int $calendar , int $month , int $year )\n指定した年とカレンダーについて、月の日数を返す
cal_from_jd /// array cal_from_jd ( int $jd , int $calendar )\nユリウス積算日からサポートされるカレンダーに変換する
cal_info /// array cal_info ([ int $calendar= -1 ] )\n特定のカレンダーに関する情報を返す
cal_to_jd /// int cal_to_jd ( int $calendar , int $month , int $day , int $year )\nサポートされるカレンダーからユリウス積算日に変換する
easter_date /// int easter_date ([ int $year ] )\n指定した年における復活祭の真夜中のUnix時を得る
easter_days /// int easter_days ([ int $year [, int $method= CAL_EASTER_DEFAULT ]] )\n指定した年において、3 月 21 日から復活祭までの日数を得る
FrenchToJD /// int frenchtojd ( int $month , int $day , int $year )\nフランス革命暦をユリウス積算日に変換する
GregorianToJD /// int gregoriantojd ( int $month , int $day , int $year )\nグレゴリウス日をユリウス積算日に変換する
JDDayOfWeek /// mixed jddayofweek ( int $julianday [, int $mode= CAL_DOW_DAYNO ] )\n曜日を返す
JDMonthName /// string jdmonthname ( int $julianday , int $mode )\n月の名前を返す
JDToFrench /// string jdtofrench ( int $juliandaycount )\nユリウス積算日をフランス革命暦(共和暦)に変換する
JDToGregorian /// string jdtogregorian ( int $julianday )\nユリウス積算日をグレゴリウス日に変換する
jdtojewish /// string jdtojewish ( int $juliandaycount [, bool $hebrew= false [, int $fl= 0 ]] )\nユリウス積算日をユダヤ暦に変換する
JDToJulian /// string jdtojulian ( int $julianday )\nユリウス積算日をユリウス暦に変換する
jdtounix /// int jdtounix ( int $jday )\nユリウス歴を Unix タイムスタンプに変換する
JewishToJD /// int jewishtojd ( int $month , int $day , int $year )\nユダヤ暦の日付けをユリウス積算日に変換する
JulianToJD /// int juliantojd ( int $month , int $day , int $year )\nユリウス暦をユリウス積算日に変換する
unixtojd /// int unixtojd ([ int $timestamp= time() ] )\nUnix タイムスタンプをユリウス歴に変換する
checkdate /// bool checkdate ( int $month , int $day , int $year )\nグレゴリオ歴の日付/時刻の妥当性を確認します
date_add /// のエイリアス DateTime::add
date_create_from_format /// DateTime::createFromFormat のエイリアス
date_create /// DateTime date_create ([ string $time= "now" [, DateTimeZone $timezone= NULL ]] )\n新しい DateTime オブジェクトを返す
date_date_set /// のエイリアス DateTime::setDate
date_default_timezone_get /// string date_default_timezone_get ( void )\nスクリプト中の日付/時刻関数で使用されるデフォルトタイムゾーンを取得する
date_default_timezone_set /// bool date_default_timezone_set ( string $timezone_identifier )\nスクリプト中の日付/時刻関数で使用されるデフォルトタイムゾーンを設定する
date_diff /// DateTime::diff のエイリアス
date_format /// のエイリアス DateTime::format
date_get_last_errors /// DateTime::getLastErrors のエイリアス
date_interval_create_from_date_string /// DateInterval::createFromDateString のエイリアス
date_interval_format /// DateInterval::format のエイリアス
date_isodate_set /// DateTime::setISODate のエイリアス
date_modify /// DateTime::modify のエイリアス
date_offset_get /// DateTime::getOffset のエイリアス
date_parse_from_format /// array date_parse_from_format ( string $format , string $date )\n指定した日付についての情報を取得する
date_parse /// array date_parse ( string $date )\n指定した日付に関する詳細な情報を連想配列で返す
date_sub /// DateTime::sub のエイリアス
date_sun_info /// array date_sun_info ( int $time , float $latitude , float $longitude )\n日の出/日の入り時刻と薄明かり (twilight) の開始/終了時刻の情報を含む配列を返す
date_sunrise /// mixed date_sunrise ( int $timestamp [, int $format= SUNFUNCS_RET_STRING [, float $latitude= ini_get("date.default_latitude") [, float $longitude= ini_get("date.default_longitude") [, float $zenith= ini_get("date.sunrise_zenith") [, float $gmt_offset= 0 ]]]]] )\n指定した日付と場所についての日の出時刻を返す
date_sunset /// mixed date_sunset ( int $timestamp [, int $format= SUNFUNCS_RET_STRING [, float $latitude= ini_get("date.default_latitude") [, float $longitude= ini_get("date.default_longitude") [, float $zenith= ini_get("date.sunset_zenith") [, float $gmt_offset= 0 ]]]]] )\n指定した日付と場所についての日の入り時刻を返す
date_time_set /// DateTime::setTime のエイリアス
date_timestamp_get /// DateTime::getTimestamp のエイリアス
date_timestamp_set /// DateTime::setTimestamp のエイリアス
date_timezone_get /// DateTime::getTimezone のエイリアス
date_timezone_set /// DateTime::setTimezone のエイリアス
date /// string date ( string $format [, int $timestamp ] )\nローカルの日付/時刻を書式化する
getdate /// array getdate ([ int $timestamp= time() ] )\n日付/時刻情報を取得する
gettimeofday /// mixed gettimeofday ([ bool $return_float ] )\n現在の時間を得る
gmdate /// string gmdate ( string $format [, int $timestamp ] )\nGMT/UTC の日付/時刻を書式化する
gmmktime /// int gmmktime ([ int $hour= gmdate("H") [, int $minute= gmdate("i") [, int $second= gmdate("s") [, int $month= gmdate("n") [, int $day= gmdate("j") [, int $year= gmdate("Y") [, int $is_dst= -1 ]]]]]]] )\nGMT 日付から Unix タイムスタンプを取得する
gmstrftime /// string gmstrftime ( string $format [, int $timestamp= time() ] )\nロケールの設定に基づいて GMT/UTC 時刻/日付をフォーマットする
idate /// int idate ( string $format [, int $timestamp= time() ] )\nローカルな時刻/日付を整数として整形する
localtime /// array localtime ([ int $timestamp= time() [, bool $is_associative= false ]] )\nローカルタイムを得る
microtime /// mixed microtime ([ bool $get_as_float ] )\n現在の Unix タイムスタンプをマイクロ秒まで返す
mktime /// int mktime ([ int $hour= date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )\n日付を Unix のタイムスタンプとして取得する
strftime /// string strftime ( string $format [, int $timestamp= time() ] )\nロケールの設定に基づいてローカルな日付・時間をフォーマットする
strptime /// array strptime ( string $date , string $format )\nstrftime が生成した日付/時刻をパースする
strtotime /// int strtotime ( string $time [, int $now ] )\n英文形式の日付を Unix タイムスタンプに変換する
time /// int time ( void )\n現在の Unix タイムスタンプを返す
timezone_abbreviations_list /// DateTimeZone::listAbbreviations のエイリアス
timezone_identifiers_list /// DateTimeZone::listIdentifiers のエイリアス
timezone_location_get /// DateTimeZone::getLocation のエイリアス
timezone_name_from_abbr /// string timezone_name_from_abbr ( string $abbr [, int $gmtOffset= -1 [, int $isdst= -1 ]] )\n略称からタイムゾーン名を返す
timezone_name_get /// DateTimeZone::getName のエイリアス
timezone_offset_get /// DateTimeZone::getOffset のエイリアス
timezone_open /// DateTimeZone timezone_open ( string $timezone )\n新しい DateTimeZone オブジェクトを返す
timezone_transitions_get /// DateTimeZone::getTransitions のエイリアス
newt_bell /// void newt_bell ( void )\nビープ音を端末に送信する
newt_button_bar /// resource newt_button_bar ( array &$buttons )\n作成したボタンを含むグリッドを返す
newt_button /// resource newt_button ( int $left , int $top , string $text )\n新しいボタンを作成する
newt_centered_window /// int newt_centered_window ( int $width , int $height [, string $title ] )\n画面の中央に指定したサイズのウィンドウをオープンする
newt_checkbox_get_value /// string newt_checkbox_get_value ( resource $checkbox )\nチェックボックスリソースの値を取得する
newt_checkbox_set_flags /// void newt_checkbox_set_flags ( resource $checkbox , int $flags , int $sense )\nチェックボックスリソースを設定する
newt_checkbox_set_value /// void newt_checkbox_set_value ( resource $checkbox , string $value )\nチェックボックスの値を設定する
newt_checkbox_tree_add_item /// void newt_checkbox_tree_add_item ( resource $checkboxtree , string $text , mixed $data , int $flags , int $index [, int $... ] )\n新しいアイテムをチェックボックスツリーに追加する
newt_checkbox_tree_find_item /// array newt_checkbox_tree_find_item ( resource $checkboxtree , mixed $data )\nチェックボックスツリーのアイテムを探す
newt_checkbox_tree_get_current /// mixed newt_checkbox_tree_get_current ( resource $checkboxtree )\nチェックボックスツリーの選択されているアイテムを返す
newt_checkbox_tree_get_entry_value /// string newt_checkbox_tree_get_entry_value ( resource $checkboxtree , mixed $data )\n説明
newt_checkbox_tree_get_multi_selection /// array newt_checkbox_tree_get_multi_selection ( resource $checkboxtree , string $seqnum )\n説明
newt_checkbox_tree_get_selection /// array newt_checkbox_tree_get_selection ( resource $checkboxtree )\n説明
newt_checkbox_tree_multi /// resource newt_checkbox_tree_multi ( int $left , int $top , int $height , string $seq [, int $flags ] )\n説明
newt_checkbox_tree_set_current /// void newt_checkbox_tree_set_current ( resource $checkboxtree , mixed $data )\n説明
newt_checkbox_tree_set_entry_value /// void newt_checkbox_tree_set_entry_value ( resource $checkboxtree , mixed $data , string $value )\n説明
newt_checkbox_tree_set_entry /// void newt_checkbox_tree_set_entry ( resource $checkboxtree , mixed $data , string $text )\n説明
newt_checkbox_tree_set_width /// void newt_checkbox_tree_set_width ( resource $checkbox_tree , int $width )\n説明
newt_checkbox_tree /// resource newt_checkbox_tree ( int $left , int $top , int $height [, int $flags ] )\n説明
newt_checkbox /// resource newt_checkbox ( int $left , int $top , string $text , string $def_value [, string $seq ] )\n説明
newt_clear_key_buffer /// void newt_clear_key_buffer ( void )\n追加の入力を待たずに、端末の入力バッファの内容をクリアする
newt_cls /// void newt_cls ( void )\n説明
newt_compact_button /// resource newt_compact_button ( int $left , int $top , string $text )\n説明
newt_component_add_callback /// void newt_component_add_callback ( resource $component , mixed $func_name , mixed $data )\n説明
newt_component_takes_focus /// void newt_component_takes_focus ( resource $component , bool $takes_focus )\n説明
newt_create_grid /// resource newt_create_grid ( int $cols , int $rows )\n説明
newt_cursor_off /// void newt_cursor_off ( void )\n説明
newt_cursor_on /// void newt_cursor_on ( void )\n説明
newt_delay /// void newt_delay ( int $microseconds )\n説明
newt_draw_form /// void newt_draw_form ( resource $form )\n説明
newt_draw_root_text /// void newt_draw_root_text ( int $left , int $top , string $text )\n指定した位置に文字列を表示する
newt_entry_get_value /// string newt_entry_get_value ( resource $entry )\n説明
newt_entry_set_filter /// void newt_entry_set_filter ( resource $entry , callback $filter , mixed $data )\n説明
newt_entry_set_flags /// void newt_entry_set_flags ( resource $entry , int $flags , int $sense )\n説明
newt_entry_set /// void newt_entry_set ( resource $entry , string $value [, bool $cursor_at_end ] )\n説明
newt_entry /// resource newt_entry ( int $left , int $top , int $width [, string $init_value [, int $flags ]] )\n説明
newt_finished /// int newt_finished ( void )\nnewt インターフェースを終了する
newt_form_add_component /// void newt_form_add_component ( resource $form , resource $component )\nフォームにコンポーネントを追加する
newt_form_add_components /// void newt_form_add_components ( resource $form , array $components )\nフォームに複数のコンポーネントを追加する
newt_form_add_hot_key /// void newt_form_add_hot_key ( resource $form , int $key )\n説明
newt_form_destroy /// void newt_form_destroy ( resource $form )\nフォームを破壊する
newt_form_get_current /// resource newt_form_get_current ( resource $form )\n説明
newt_form_run /// void newt_form_run ( resource $form , array &$exit_struct )\nフォームを実行する
newt_form_set_background /// void newt_form_set_background ( resource $from , int $background )\n説明
newt_form_set_height /// void newt_form_set_height ( resource $form , int $height )\n説明
newt_form_set_size /// void newt_form_set_size ( resource $form )\n説明
newt_form_set_timer /// void newt_form_set_timer ( resource $form , int $milliseconds )\n説明
newt_form_set_width /// void newt_form_set_width ( resource $form , int $width )\n説明
newt_form_watch_fd /// void newt_form_watch_fd ( resource $form , resource $stream [, int $flags ] )\n説明
newt_form /// resource newt_form ([ resource $vert_bar [, string $help [, int $flags ]]] )\nフォームを作成する
newt_get_screen_size /// void newt_get_screen_size ( int &$cols , int &$rows )\n参照で渡された引数に、現在の端末の大きさを格納する
newt_grid_add_components_to_form /// void newt_grid_add_components_to_form ( resource $grid , resource $form , bool $recurse )\n説明
newt_grid_basic_window /// resource newt_grid_basic_window ( resource $text , resource $middle , resource $buttons )\n説明
newt_grid_free /// void newt_grid_free ( resource $grid , bool $recurse )\n説明
newt_grid_get_size /// void newt_grid_get_size ( resouce $grid , int &$width , int &$height )\n説明
newt_grid_h_close_stacked /// resource newt_grid_h_close_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] )\n説明
newt_grid_h_stacked /// resource newt_grid_h_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] )\n説明
newt_grid_place /// void newt_grid_place ( resource $grid , int $left , int $top )\n説明
newt_grid_set_field /// void newt_grid_set_field ( resource $grid , int $col , int $row , int $type , resource $val , int $pad_left , int $pad_top , int $pad_right , int $pad_bottom , int $anchor [, int $flags ] )\n説明
newt_grid_simple_window /// resource newt_grid_simple_window ( resource $text , resource $middle , resource $buttons )\n説明
newt_grid_v_close_stacked /// resource newt_grid_v_close_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] )\n説明
newt_grid_v_stacked /// resource newt_grid_v_stacked ( int $element1_type , resource $element1 [, int $... [, resource $... ]] )\n説明
newt_grid_wrapped_window_at /// void newt_grid_wrapped_window_at ( resource $grid , string $title , int $left , int $top )\n説明
newt_grid_wrapped_window /// void newt_grid_wrapped_window ( resource $grid , string $title )\n説明
newt_init /// int newt_init ( void )\nnewt を初期化する
newt_label_set_text /// void newt_label_set_text ( resource $label , string $text )\n説明
newt_label /// resource newt_label ( int $left , int $top , string $text )\n説明
newt_listbox_append_entry /// void newt_listbox_append_entry ( resource $listbox , string $text , mixed $data )\n説明
newt_listbox_clear_selection /// void newt_listbox_clear_selection ( resource $listbox )\n説明
newt_listbox_clear /// void newt_listbox_clear ( resource $listobx )\n説明
newt_listbox_delete_entry /// void newt_listbox_delete_entry ( resource $listbox , mixed $key )\n説明
newt_listbox_get_current /// string newt_listbox_get_current ( resource $listbox )\n説明
newt_listbox_get_selection /// array newt_listbox_get_selection ( resource $listbox )\n説明
newt_listbox_insert_entry /// void newt_listbox_insert_entry ( resource $listbox , string $text , mixed $data , mixed $key )\n説明
newt_listbox_item_count /// int newt_listbox_item_count ( resource $listbox )\n説明
newt_listbox_select_item /// void newt_listbox_select_item ( resource $listbox , mixed $key , int $sense )\n説明
newt_listbox_set_current_by_key /// void newt_listbox_set_current_by_key ( resource $listbox , mixed $key )\n説明
newt_listbox_set_current /// void newt_listbox_set_current ( resource $listbox , int $num )\n説明
newt_listbox_set_data /// void newt_listbox_set_data ( resource $listbox , int $num , mixed $data )\n説明
newt_listbox_set_entry /// void newt_listbox_set_entry ( resource $listbox , int $num , string $text )\n説明
newt_listbox_set_width /// void newt_listbox_set_width ( resource $listbox , int $width )\n説明
newt_listbox /// resource newt_listbox ( int $left , int $top , int $height [, int $flags ] )\n説明
newt_listitem_get_data /// mixed newt_listitem_get_data ( resource $item )\n説明
newt_listitem_set /// void newt_listitem_set ( resource $item , string $text )\n説明
newt_listitem /// resource newt_listitem ( int $left , int $top , string $text , bool $is_default , resouce $prev_item , mixed $data [, int $flags ] )\n説明
newt_open_window /// int newt_open_window ( int $left , int $top , int $width , int $height [, string $title ] )\n指定したサイズと位置でウィンドウをオープンする
newt_pop_help_line /// void newt_pop_help_line ( void )\n現在のヘルプ行をスタックの内容で置き換える
newt_pop_window /// void newt_pop_window ( void )\nトップウィンドウを画面から消去する
newt_push_help_line /// void newt_push_help_line ([ string $text ] )\n現在のヘルプ行をスタックに保存し、新しい行を表示する
newt_radio_get_current /// resource newt_radio_get_current ( resource $set_member )\n説明
newt_radiobutton /// resource newt_radiobutton ( int $left , int $top , string $text , bool $is_default [, resource $prev_button ] )\n説明
newt_redraw_help_line /// void newt_redraw_help_line ( void )\n説明
newt_reflow_text /// string newt_reflow_text ( string $text , int $width , int $flex_down , int $flex_up , int &$actual_width , int &$actual_height )\n説明
newt_refresh /// void newt_refresh ( void )\n画面の変更された部分を更新する
newt_resize_screen /// void newt_resize_screen ([ bool $redraw ] )\n説明
newt_resume /// void newt_resume ( void )\nnewt_suspend をコールした後に newt インターフェースの使用を再開する
newt_run_form /// resource newt_run_form ( resource $form )\nフォームを実行する
newt_scale_set /// void newt_scale_set ( resource $scale , int $amount )\n説明
newt_scale /// resource newt_scale ( int $left , int $top , int $width , int $full_value )\n説明
newt_scrollbar_set /// void newt_scrollbar_set ( resource $scrollbar , int $where , int $total )\n説明
newt_set_help_callback /// void newt_set_help_callback ( mixed $function )\n説明
newt_set_suspend_callback /// void newt_set_suspend_callback ( callback $function , mixed $data )\nユーザがサスペンドキーを押した際に起動するコールバック関数を設定する
newt_suspend /// void newt_suspend ( void )\n端末を元の状態に戻すよう、newt に通知する
newt_textbox_get_num_lines /// int newt_textbox_get_num_lines ( resource $textbox )\n説明
newt_textbox_reflowed /// resource newt_textbox_reflowed ( int $left , int $top , char $*text , int $width , int $flex_down , int $flex_up [, int $flags ] )\n説明
newt_textbox_set_height /// void newt_textbox_set_height ( resource $textbox , int $height )\n説明
newt_textbox_set_text /// void newt_textbox_set_text ( resource $textbox , string $text )\n説明
newt_textbox /// resource newt_textbox ( int $left , int $top , int $width , int $height [, int $flags ] )\n説明
newt_vertical_scrollbar /// resource newt_vertical_scrollbar ( int $left , int $top , int $height [, int $normal_colorset [, int $thumb_colorset ]] )\n説明
newt_wait_for_key /// void newt_wait_for_key ( void )\nキーが押されるまで結果を返さない
newt_win_choice /// int newt_win_choice ( string $title , string $button1_text , string $button2_text , string $format [, mixed $args [, mixed $... ]] )\n説明
newt_win_entries /// int newt_win_entries ( string $title , string $text , int $suggested_width , int $flex_down , int $flex_up , int $data_width , array &$items , string $button1 [, string $... ] )\n説明
newt_win_menu /// int newt_win_menu ( string $title , string $text , int $suggestedWidth , int $flexDown , int $flexUp , int $maxListHeight , array $items , int &$listItem [, string $button1 [, string $... ]] )\n説明
newt_win_message /// void newt_win_message ( string $title , string $button_text , string $format [, mixed $args [, mixed $... ]] )\n説明
newt_win_messagev /// void newt_win_messagev ( string $title , string $button_text , string $format , array $args )\n説明
newt_win_ternary /// int newt_win_ternary ( string $title , string $button1_text , string $button2_text , string $button3_text , string $format [, mixed $args [, mixed $... ]] )\n説明
ncurses_addch /// int ncurses_addch ( int $ch )\n現在の位置に文字を追加し、カーソルを進める
ncurses_addchnstr /// int ncurses_addchnstr ( string $s , int $n )\n現在の位置に指定した長さの属性付き文字列を追加する
ncurses_addchstr /// int ncurses_addchstr ( string $s )\n現在の位置に属性付き文字列を追加する
ncurses_addnstr /// int ncurses_addnstr ( string $s , int $n )\n現在の位置に、指定した長さの文字列を追加する
ncurses_addstr /// int ncurses_addstr ( string $text )\n現在の位置にテキストを出力する
ncurses_assume_default_colors /// int ncurses_assume_default_colors ( int $fg , int $bg )\nカラー 0 のデフォルト色を定義する
ncurses_attroff /// int ncurses_attroff ( int $attributes )\n指定した属性を無効とする
ncurses_attron /// int ncurses_attron ( int $attributes )\n指定した属性を有効にする
ncurses_attrset /// int ncurses_attrset ( int $attributes )\n指定した属性を設定する
ncurses_baudrate /// int ncurses_baudrate ( void )\n端末のボーレートを返す
ncurses_beep /// int ncurses_beep ( void )\n端末のビープを鳴らす
ncurses_bkgd /// int ncurses_bkgd ( int $attrchar )\n端末画面の背景属性を設定する
ncurses_bkgdset /// void ncurses_bkgdset ( int $attrchar )\n画面背景を制御する
ncurses_border /// int ncurses_border ( int $left , int $right , int $top , int $bottom , int $tl_corner , int $tr_corner , int $bl_corner , int $br_corner )\n属性付きの文字で画面周囲に境界を描画する
ncurses_bottom_panel /// int ncurses_bottom_panel ( resource $panel )\nパネルをスタックの最下部に移動する
ncurses_can_change_color /// bool ncurses_can_change_color ( void )\n端末の色を変更可能かどうか確認する
ncurses_cbreak /// bool ncurses_cbreak ( void )\n入力のバッファリングを変更する
ncurses_clear /// bool ncurses_clear ( void )\nスクリーンをクリアする
ncurses_clrtobot /// bool ncurses_clrtobot ( void )\n現在位置から最下部までスクリーンをクリアする
ncurses_clrtoeol /// bool ncurses_clrtoeol ( void )\n現在位置から行末までスクリーンをクリアする
ncurses_color_content /// int ncurses_color_content ( int $color , int &$r , int &$g , int &$b )\n色の RGB 値を取得する
ncurses_color_set /// int ncurses_color_set ( int $pair )\n前景/背景色を設定する
ncurses_curs_set /// int ncurses_curs_set ( int $visibility )\nカーソル状態を設定する
ncurses_def_prog_mode /// bool ncurses_def_prog_mode ( void )\n端末(プログラム)モードを保存する
ncurses_def_shell_mode /// bool ncurses_def_shell_mode ( void )\n端末(シェル)モードを保存する
ncurses_define_key /// int ncurses_define_key ( string $definition , int $keycode )\nキーコードを定義する
ncurses_del_panel /// bool ncurses_del_panel ( resource $panel )\nパネルをスタックから取り除き、削除する (しかし、関連付けられているウィンドウは削除しない)
ncurses_delay_output /// int ncurses_delay_output ( int $milliseconds )\nパディング文字を用いて端末出力を遅延させる
ncurses_delch /// bool ncurses_delch ( void )\n現在位置の文字を削除し、残った部分を左に移動する
ncurses_deleteln /// bool ncurses_deleteln ( void )\n現在位置の行を削除し、残りの部分を上に上げる
ncurses_delwin /// bool ncurses_delwin ( resource $window )\nncurses ウインドウを削除する
ncurses_doupdate /// bool ncurses_doupdate ( void )\n準備中の全ての出力を書き込み、端末をリフレッシュする
ncurses_echo /// bool ncurses_echo ( void )\nキーボード入力のエコーを有効とする
ncurses_echochar /// int ncurses_echochar ( int $character )\nリフレッシュを行いつつ 1 文字出力する
ncurses_end /// int ncurses_end ( void )\nncurses を終了し、画面を消去する
ncurses_erase /// bool ncurses_erase ( void )\n端末画面を消去する
ncurses_erasechar /// string ncurses_erasechar ( void )\n現在の erase 文字を返す
ncurses_filter /// void ncurses_filter ( void )\niniscr() および newterm() の LINES を 1 に設定する
ncurses_flash /// bool ncurses_flash ( void )\n端末画面をフラッシュする(ビジュアルベル)
ncurses_flushinp /// bool ncurses_flushinp ( void )\nキーボード入力バッファをフラッシュする
ncurses_getch /// int ncurses_getch ( void )\nキーボードから 1 文字読み込む
ncurses_getmaxyx /// void ncurses_getmaxyx ( resource $window , int &$y , int &$x )\nウィンドウの大きさを返す
ncurses_getmouse /// bool ncurses_getmouse ( array &$mevent )\nマウスイベントを読みこむ
ncurses_getyx /// void ncurses_getyx ( resource $window , int &$y , int &$x )\nウィンドウ内の現在のカーソル位置を返す
ncurses_halfdelay /// int ncurses_halfdelay ( int $tenth )\n端末をハーフディレイモードにする
ncurses_has_colors /// bool ncurses_has_colors ( void )\nカラー端末かどうか確認する
ncurses_has_ic /// bool ncurses_has_ic ( void )\n挿入/削除機能の有無を確認する
ncurses_has_il /// bool ncurses_has_il ( void )\n行挿入/削除機能の有無を確認する
ncurses_has_key /// int ncurses_has_key ( int $keycode )\n端末キーボードにおいてファンクションキーの有無を調べる
ncurses_hide_panel /// int ncurses_hide_panel ( resource $panel )\nパネルをスタックから取り除き、見えなくする
ncurses_hline /// int ncurses_hline ( int $charattr , int $n )\n現在位置に属性付きの文字を用いて最大 n 文字長の線を水平に描画する
ncurses_inch /// string ncurses_inch ( void )\n現在位置の文字と属性を取得する
ncurses_init_color /// int ncurses_init_color ( int $color , int $r , int $g , int $b )\n新規に RGB 値を設定する
ncurses_init_pair /// int ncurses_init_pair ( int $pair , int $fg , int $bg )\n色の組を確保する
ncurses_init /// void ncurses_init ( void )\nncurses を初期化する
ncurses_insch /// int ncurses_insch ( int $character )\n文字を挿入し、現在位置にある文字を含む残りの行を移動する
ncurses_insdelln /// int ncurses_insdelln ( int $count )\n現在の行の後に複数の行を挿入し、スクロールダウンする (負の数を指定すると削除し、スクロールアップする)
ncurses_insertln /// int ncurses_insertln ( void )\n行を挿入し、残りの部分をスクロールダウンする
ncurses_insstr /// int ncurses_insstr ( string $text )\n現在位置に文字列を挿入し、残りの行を右に移動する
ncurses_instr /// int ncurses_instr ( string &$buffer )\n端末画面から文字列を読み込む
ncurses_isendwin /// bool ncurses_isendwin ( void )\nNcurses が endwin モードの場合、通常の画面出力が実行可能
ncurses_keyok /// int ncurses_keyok ( int $keycode , bool $enable )\nキーコードを有効または無効にする
ncurses_keypad /// int ncurses_keypad ( resource $window , bool $bf )\nキーパッドを on あるいは off にする
ncurses_killchar /// string ncurses_killchar ( void )\n現在の行削除文字を返す
ncurses_longname /// string ncurses_longname ( void )\n端末の説明を返す
ncurses_meta /// int ncurses_meta ( resource $window , bool $8bit )\n8 ビットのメタキー情報を有効/無効にする
ncurses_mouse_trafo /// bool ncurses_mouse_trafo ( int &$y , int &$x , bool $toscreen )\n座標を変換する
ncurses_mouseinterval /// int ncurses_mouseinterval ( int $milliseconds )\nマウスボタンクリックのタイムアウトを設定する
ncurses_mousemask /// int ncurses_mousemask ( int $newmask , int &$oldmask )\nマウスオプションを設定する
ncurses_move_panel /// int ncurses_move_panel ( resource $panel , int $startx , int $starty )\n左上が [startx, starty] となるようにパネルを移動する
ncurses_move /// int ncurses_move ( int $y , int $x )\n出力位置を移動する
ncurses_mvaddch /// int ncurses_mvaddch ( int $y , int $x , int $c )\n現在位置を移動し、文字を追加する
ncurses_mvaddchnstr /// int ncurses_mvaddchnstr ( int $y , int $x , string $s , int $n )\n位置を移動し、指定長の属性付きの文字列を追加する
ncurses_mvaddchstr /// int ncurses_mvaddchstr ( int $y , int $x , string $s )\n位置を移動し、属性付きの文字列を追加する
ncurses_mvaddnstr /// int ncurses_mvaddnstr ( int $y , int $x , string $s , int $n )\n位置を移動し、指定長の文字列を追加する
ncurses_mvaddstr /// int ncurses_mvaddstr ( int $y , int $x , string $s )\n位置を移動し、文字列を追加する
ncurses_mvcur /// int ncurses_mvcur ( int $old_y , int $old_x , int $new_y , int $new_x )\n直ちにカーソルを移動する
ncurses_mvdelch /// int ncurses_mvdelch ( int $y , int $x )\n位置を移動し、文字を削除、行の残りを左シフトする
ncurses_mvgetch /// int ncurses_mvgetch ( int $y , int $x )\n位置を移動し、新しい位置で文字を得る
ncurses_mvhline /// int ncurses_mvhline ( int $y , int $x , int $attrchar , int $n )\n位置を新しく設定し、属性付きの文字を用いて最大n文字の水平線を描画
ncurses_mvinch /// int ncurses_mvinch ( int $y , int $x )\n位置を移動し、新しい位置の属性付きの文字を取得する
ncurses_mvvline /// int ncurses_mvvline ( int $y , int $x , int $attrchar , int $n )\n位置を新しく設定し、属性付きの文字を用いて最大 n 文字の垂直線を描画する
ncurses_mvwaddstr /// int ncurses_mvwaddstr ( resource $window , int $y , int $x , string $text )\nウインドウの新規位置に文字列を追加する
ncurses_napms /// int ncurses_napms ( int $milliseconds )\nスリープ
ncurses_new_panel /// resource ncurses_new_panel ( resource $window )\n新しいパネルを作成し、それをウィンドウに関連づける
ncurses_newpad /// resource ncurses_newpad ( int $rows , int $cols )\n新しいパッド (window) を作成する
ncurses_newwin /// resource ncurses_newwin ( int $rows , int $cols , int $y , int $x )\n新規ウインドウを作成する
ncurses_nl /// bool ncurses_nl ( void )\n改行と復改/ラインフィードを変換する
ncurses_nocbreak /// bool ncurses_nocbreak ( void )\n端末を cooked モードに変更する
ncurses_noecho /// bool ncurses_noecho ( void )\nキーボード入力エコーを無効にする
ncurses_nonl /// bool ncurses_nonl ( void )\n改行と復改/ラインフィードを変換しない
ncurses_noqiflush /// void ncurses_noqiflush ( void )\nシグナル文字のフラッシュを無効とする
ncurses_noraw /// bool ncurses_noraw ( void )\n端末を raw モード以外に変更する
ncurses_pair_content /// int ncurses_pair_content ( int $pair , int &$f , int &$b )\n色の RGB 値を取得する
ncurses_panel_above /// resource ncurses_panel_above ( resource $panel )\nパネルの上のパネルを返す
ncurses_panel_below /// resource ncurses_panel_below ( resource $panel )\nパネルの下のパネルを返す
ncurses_panel_window /// resource ncurses_panel_window ( resource $panel )\nパネルに関連付けられたウィンドウを返す
ncurses_pnoutrefresh /// int ncurses_pnoutrefresh ( resource $pad , int $pminrow , int $pmincol , int $sminrow , int $smincol , int $smaxrow , int $smaxcol )\nパッドから仮想画面にリージョンをコピーする
ncurses_prefresh /// int ncurses_prefresh ( resource $pad , int $pminrow , int $pmincol , int $sminrow , int $smincol , int $smaxrow , int $smaxcol )\nパッドから仮想画面にリージョンをコピーする
ncurses_putp /// int ncurses_putp ( string $text )\nパディング情報を文字列に適用し、それを出力する
ncurses_qiflush /// void ncurses_qiflush ( void )\nシグナル文字のフラッシュを有効とする
ncurses_raw /// bool ncurses_raw ( void )\n端末を raw モードに変更する
ncurses_refresh /// int ncurses_refresh ( int $ch )\n画面をリフレッシュする
ncurses_replace_panel /// int ncurses_replace_panel ( resource $panel , resource $window )\nパネルに関連付けられたウィンドウを置き換える
ncurses_reset_prog_mode /// int ncurses_reset_prog_mode ( void )\ndef_prog_mode で保存したプログラムモードをリセットする
ncurses_reset_shell_mode /// int ncurses_reset_shell_mode ( void )\ndef_shell_mode で保存したシェルモードをリセットする
ncurses_resetty /// bool ncurses_resetty ( void )\n保存した端末モードに復帰する
ncurses_savetty /// bool ncurses_savetty ( void )\n端末の状態を保存する
ncurses_scr_dump /// int ncurses_scr_dump ( string $filename )\n画面の内容をファイルにダンプする
ncurses_scr_init /// int ncurses_scr_init ( string $filename )\nファイルダンプから画面を初期化する
ncurses_scr_restore /// int ncurses_scr_restore ( string $filename )\nファイルダンプから画面を復帰する
ncurses_scr_set /// int ncurses_scr_set ( string $filename )\nファイルダンプから画面を継承する
ncurses_scrl /// int ncurses_scrl ( int $count )\n現在位置を変更せずに画面の内容をスクロールアップまたはダウンする
ncurses_show_panel /// int ncurses_show_panel ( resource $panel )\n不可視のパネルをスタックの最上部に置き、見えるようにする
ncurses_slk_attr /// int ncurses_slk_attr ( void )\n現在のソフトラベルキー属性を返す
ncurses_slk_attroff /// int ncurses_slk_attroff ( int $intarg )\nソフトファンクションキーラベルの指定した属性を無効にする
ncurses_slk_attron /// int ncurses_slk_attron ( int $intarg )\nソフトファンクションキーラベルの指定した属性を有効にする
ncurses_slk_attrset /// int ncurses_slk_attrset ( int $intarg )\nソフトファンクションキーラベルに、指定した属性を設定する
ncurses_slk_clear /// bool ncurses_slk_clear ( void )\n画面からソフトラベルをクリアする
ncurses_slk_color /// int ncurses_slk_color ( int $intarg )\nソフトラベルキーの色を設定する
ncurses_slk_init /// bool ncurses_slk_init ( int $format )\nソフトラベルキー関数を初期化する
ncurses_slk_noutrefresh /// bool ncurses_slk_noutrefresh ( void )\n仮想画面にソフトラベルキーをコピーする
ncurses_slk_refresh /// int ncurses_slk_refresh ( void )\nソフトラベルキーを画面にコピーする
ncurses_slk_restore /// int ncurses_slk_restore ( void )\nソフトラベルキーを復帰する
ncurses_slk_set /// bool ncurses_slk_set ( int $labelnr , string $label , int $format )\nファンクションキーラベルを設定する
ncurses_slk_touch /// int ncurses_slk_touch ( void )\nncurses_slk_noutrefresh を実行する際に強制的に出力する
ncurses_standend /// int ncurses_standend ( void )\n'standout' 属性の使用を停止する
ncurses_standout /// int ncurses_standout ( void )\n'standout' 属性の使用を開始する
ncurses_start_color /// int ncurses_start_color ( void )\n色の使用を開始する
ncurses_termattrs /// bool ncurses_termattrs ( void )\n端末でサポートされる全ての属性フラグの論理和を返す
ncurses_termname /// string ncurses_termname ( void )\n端末の(簡略)名を返す
ncurses_timeout /// void ncurses_timeout ( int $millisec )\n特別なキーシーケンスのタイムアウトを設定する
ncurses_top_panel /// int ncurses_top_panel ( resource $panel )\n可視パネルをスタックの最上部に移動する
ncurses_typeahead /// int ncurses_typeahead ( int $fd )\ntypeahead 確認用に別のファイル記述子を指定する
ncurses_ungetch /// int ncurses_ungetch ( int $keycode )\n入力ストリームに 1 文字戻す
ncurses_ungetmouse /// bool ncurses_ungetmouse ( array $mevent )\nマウスイベントをキューにプッシュする
ncurses_update_panels /// void ncurses_update_panels ( void )\n仮想画面を再描画し、スタック内のパネルとの関係を反映させる
ncurses_use_default_colors /// bool ncurses_use_default_colors ( void )\n端末のデフォルト色をカラー ID -1 に割り付ける
ncurses_use_env /// void ncurses_use_env ( bool $flag )\n端末の大きさに関する環境情報の使用を制御する
ncurses_use_extended_names /// int ncurses_use_extended_names ( bool $flag )\nterminfo 記述において拡張名の使用を制御する
ncurses_vidattr /// int ncurses_vidattr ( int $intarg )\nvideo attribute モードで、端末上に文字列を表示する
ncurses_vline /// int ncurses_vline ( int $charattr , int $n )\n現在位置に最大 n 文字の属性付きの文字を用いて垂直線を描画する
ncurses_waddch /// int ncurses_waddch ( resource $window , int $ch )\nウィンドウ内の現在位置に文字を追加し、カーソルを進める
ncurses_waddstr /// int ncurses_waddstr ( resource $window , string $str [, int $n ] )\nウィンドウ内の現在位置にテキストを出力する
ncurses_wattroff /// int ncurses_wattroff ( resource $window , int $attrs )\nウィンドウの属性をオフにする
ncurses_wattron /// int ncurses_wattron ( resource $window , int $attrs )\nウィンドウの属性をオンにする
ncurses_wattrset /// int ncurses_wattrset ( resource $window , int $attrs )\nウィンドウの属性を設定する
ncurses_wborder /// int ncurses_wborder ( resource $window , int $left , int $right , int $top , int $bottom , int $tl_corner , int $tr_corner , int $bl_corner , int $br_corner )\n属性文字を使用してウィンドウの周囲に線を描画する
ncurses_wclear /// int ncurses_wclear ( resource $window )\nウィンドウをクリアする
ncurses_wcolor_set /// int ncurses_wcolor_set ( resource $window , int $color_pair )\nウィンドウの色の組み合わせを設定する
ncurses_werase /// int ncurses_werase ( resource $window )\nウィンドウを消去する
ncurses_wgetch /// int ncurses_wgetch ( resource $window )\nキーボート (ウィンドウ) から文字を読み込む
ncurses_whline /// int ncurses_whline ( resource $window , int $charattr , int $n )\n指定した属性文字を用いて、最大 n 文字分の長さの水平線を ウィンドウに描画する
ncurses_wmouse_trafo /// bool ncurses_wmouse_trafo ( resource $window , int &$y , int &$x , bool $toscreen )\nウィンドウ/標準画面の座標系を変換する
ncurses_wmove /// int ncurses_wmove ( resource $window , int $y , int $x )\nウィンドウの出力位置を移動する
ncurses_wnoutrefresh /// int ncurses_wnoutrefresh ( resource $window )\nウィンドウを仮想画面にコピーする
ncurses_wrefresh /// int ncurses_wrefresh ( resource $window )\n端末画面のウインドウをリフレッシュする
ncurses_wstandend /// int ncurses_wstandend ( resource $window )\nウィンドウの standout モードを終了する
ncurses_wstandout /// int ncurses_wstandout ( resource $window )\nウィンドウの standout モードに入る
ncurses_wvline /// int ncurses_wvline ( resource $window , int $charattr , int $n )\n指定した属性文字を用いて、最大 n 文字分の長さの垂直線を ウィンドウに描画する
readline_add_history /// bool readline_add_history ( string $line )\nヒストリに 1 行追加する
readline_callback_handler_install /// bool readline_callback_handler_install ( string $prompt , callback $callback )\nreadline コールバックインターフェースと端末を初期化し、 プロンプトを表示して結果をすぐに返す
readline_callback_handler_remove /// bool readline_callback_handler_remove ( void )\nインストールされたハンドラを削除し、端末の設定をもとに戻す
readline_callback_read_char /// void readline_callback_read_char ( void )\n文字を読み込み、改行を受け取ると readline コールバックインターフェースに通知する
readline_clear_history /// bool readline_clear_history ( void )\nヒストリをクリアする
readline_completion_function /// bool readline_completion_function ( callback $function )\n補完関数を登録する
readline_info /// mixed readline_info ([ string $varname [, string $newvalue ]] )\n種々の readline の内部変数を取得/設定する
readline_list_history /// array readline_list_history ( void )\nヒストリを一覧表示する
readline_on_new_line /// void readline_on_new_line ( void )\nカーソルが新しい行に移動したことを readline に通知する
readline_read_history /// bool readline_read_history ([ string $filename ] )\nヒストリを読み込む
readline_redisplay /// void readline_redisplay ( void )\n画面を再描画する
readline_write_history /// bool readline_write_history ([ string $filename ] )\nヒストリを書きこむ
readline /// string readline ([ string $prompt ] )\n一行読み込む
bzclose /// int bzclose ( resource $bz )\nbzip2 ファイルを閉じる
bzcompress /// mixed bzcompress ( string $source [, int $blocksize= 4 [, int $workfactor= 0 ]] )\n文字列をbzip2形式のデータに圧縮する
bzdecompress /// mixed bzdecompress ( string $source [, int $small= 0 ] )\nbzip2 形式のデータを解凍する
bzerrno /// int bzerrno ( resource $bz )\nbzip2 エラー番号を返す
bzerror /// array bzerror ( resource $bz )\nbzip2 エラー番号とエラー文字列を配列で返す
bzerrstr /// string bzerrstr ( resource $bz )\nbzip2 エラー文字列を返す
bzflush /// int bzflush ( resource $bz )\n全てのバッファリングされたデータを強制的に書き込む
bzopen /// resource bzopen ( string $filename , string $mode )\nbzip2 圧縮されたファイルをオープンする
bzread /// string bzread ( resource $bz [, int $length= 1024 ] )\nバイナリ対応の bzip2 ファイル読み込み
bzwrite /// int bzwrite ( resource $bz , string $data [, int $length ] )\nバイナリ対応の bzip2 ファイルへの書き込み
lzf_compress /// string lzf_compress ( string $data )\nLZF 圧縮を行う
lzf_decompress /// string lzf_decompress ( string $data )\nLZF 圧縮を伸長する
lzf_optimized_for /// int lzf_optimized_for ( void )\nLZF 拡張モジュールの最適化指定を取得する
rar_close /// bool rar_close ( resource $rar_file )\nRar アーカイブをクローズし、全リソースを開放する
rar_entry_get /// RarEntry rar_entry_get ( resource $rar_file , string $entry_name )\nRar アーカイブからエントリオブジェクトを取得する
Rar::extract /// bool extract ( string $dir [, string $filepath ] )\nアーカイブのエントリを展開する
Rar::getAttr /// int getAttr ( void )\nエントリの属性を取得する
Rar::getCrc /// int getCrc ( void )\nエントリの CRC を取得する
Rar::getFileTime /// string getFileTime ( void )\nエントリの最終更新時刻を取得する
Rar::getHostOs /// int getHostOs ( void )\nエントリのホスト OS を取得する
Rar::getMethod /// int getMethod ( void )\nエントリの圧縮方法を取得する
Rar::getName /// string getName ( void )\nエントリの名前を取得する
Rar::getPackedSize /// int getPackedSize ( void )\n圧縮後のエントリのサイズを取得する
Rar::getUnpackedSize /// int getUnpackedSize ( void )\n展開後のエントリのサイズを取得する
Rar::getVersion /// int getVersion ( void )\nエントリを追加するのに用いたアーカイバのバージョンを取得する
rar_list /// array rar_list ( resource $rar_file )\nRar アーカイブのエントリ一覧を取得する
rar_open /// resource rar_open ( string $filename [, string $password ] )\nRar アーカイブをオープンする
zip_close /// void zip_close ( resource $zip )\nZIP ファイルアーカイブを閉じる
zip_entry_close /// bool zip_entry_close ( resource $zip_entry )\nディレクトリエントリを閉じる
zip_entry_compressedsize /// int zip_entry_compressedsize ( resource $zip_entry )\nディレクトリエントリの圧縮時のサイズを取得する
zip_entry_compressionmethod /// string zip_entry_compressionmethod ( resource $zip_entry )\nディレクトリエントリの圧縮方法を取得する
zip_entry_filesize /// int zip_entry_filesize ( resource $zip_entry )\nディレクトリエントリの実際のファイルサイズを取得する
zip_entry_name /// string zip_entry_name ( resource $zip_entry )\nディレクトリエントリの名前を取得する
zip_entry_open /// bool zip_entry_open ( resource $zip , resource $zip_entry [, string $mode ] )\n読込み用にディレクトリエントリをオープンする
zip_entry_read /// string zip_entry_read ( resource $zip_entry [, int $length ] )\nオープンされたディレクトリエントリから読み込む
zip_open /// mixed zip_open ( string $filename )\nZip ファイルアーカイブをオープンする
zip_read /// mixed zip_read ( resource $zip )\nZip ファイルアーカイブの中の次のエントリを読み込む
ZipArchive::addEmptyDir /// bool ZipArchive::addEmptyDir ( string $dirname )\n新しいディレクトリを追加する
ZipArchive::addFile /// bool ZipArchive::addFile ( string $filename [, string $localname ] )\n指定したパスからファイルを ZIP アーカイブに追加する
ZipArchive::addFromString /// bool ZipArchive::addFromString ( string $localname , string $contents )\nその内容を指定して、ファイルを ZIP アーカイブに追加する
ZipArchive::close /// bool ZipArchive::close ( void )\nアクティブな (オープンされた、あるいは新しく作成された) アーカイブを閉じる
ZipArchive::deleteIndex /// bool ZipArchive::deleteIndex ( int $index )\nインデックスを使用して、アーカイブ内のエントリを削除する
ZipArchive::deleteName /// bool ZipArchive::deleteName ( string $name )\n名前を使用して、アーカイブからエントリを削除する
ZipArchive::extractTo /// bool ZipArchive::extractTo ( string $destination [, mixed $entries ] )\nアーカイブの内容を展開する
ZipArchive::getArchiveComment /// string ZipArchive::getArchiveComment ( void )\nZIP アーカイブのコメントを返す
ZipArchive::getCommentIndex /// string ZipArchive::getCommentIndex ( int $index [, int $flags ] )\nエントリのインデックスを使用して、エントリのコメントを返す
ZipArchive::getCommentName /// string ZipArchive::getCommentName ( string $name [, int $flags ] )\nエントリ名を使用して、エントリのコメントを返す
ZipArchive::getFromIndex /// mixed ZipArchive::getFromIndex ( int $index [, int $flags ] )\nインデックスを使用して、エントリの内容を返す
ZipArchive::getFromName /// mixed ZipArchive::getFromName ( string $name [, int $flags ] )\n名前を使用して、エントリの内容を返す
ZipArchive::getNameIndex /// string ZipArchive::getNameIndex ( int $index )\nインデックスを使用して、エントリの名前を返す
ZipArchive::getStream /// resource ZipArchive::getStream ( string $name )\n名前を使用して、エントリのファイルハンドラ (読み込み専用) を取得する
ZipArchive::locateName /// mixed ZipArchive::locateName ( string $name [, int $flags ] )\nアーカイブ内のエントリのインデックスを返す
ZipArchive::open /// mixed ZipArchive::open ( string $filename [, int $flags ] )\nZIP ファイルアーカイブをオープンする
ZipArchive::renameIndex /// bool ZipArchive::renameIndex ( int $index , string $newname )\nインデックスを使用してエントリ名を変更する
ZipArchive::renameName /// bool ZipArchive::renameName ( string $name , string $newname )\n名前を使用してエントリ名を変更する
ZipArchive::setArchiveComment /// mixed ZipArchive::setArchiveComment ( string $comment )\nZIP アーカイブのコメントを設定する
ZipArchive::setCommentIndex /// mixed ZipArchive::setCommentIndex ( int $index , string $comment )\nインデックスを使用してエントリのコメントを設定する
ZipArchive::setCommentName /// mixed ZipArchive::setCommentName ( string $name , string $comment )\n名前を使用してエントリのコメントを設定する
ZipArchive::statIndex /// mixed ZipArchive::statIndex ( int $index [, int $flags ] )\nインデックスを使用してエントリの詳細を取得する
ZipArchive::statName /// mixed ZipArchive::statName ( name $name [, int $flags ] )\n名前を使用してエントリの詳細を取得する
ZipArchive::unchangeAll /// mixed ZipArchive::unchangeAll ( void )\nアーカイブに対するすべての変更を取り消す
ZipArchive::unchangeArchive /// mixed ZipArchive::unchangeArchive ( void )\nアーカイブ全体に対して行われたすべての変更を取り消す
ZipArchive::unchangeIndex /// mixed ZipArchive::unchangeIndex ( int $index )\n指定したインデックスのエントリに対するすべての変更を取り消す
ZipArchive::unchangeName /// mixed ZipArchive::unchangeName ( string $name )\n指定した名前のエントリに対するすべての変更を取り消す
gzclose /// bool gzclose ( resource $zp )\n開かれたgzファイルへのポインタを閉じる
gzcompress /// string gzcompress ( string $data [, int $level= -1 ] )\n文字列を圧縮する
gzdecode /// string gzdecode ( string $data [, int $length ] )\ngzip 圧縮された文字列をデコードする
gzdeflate /// string gzdeflate ( string $data [, int $level= -1 ] )\n文字列を deflate 圧縮する
gzencode /// string gzencode ( string $data [, int $level= -1 [, int $encoding_mode= FORCE_GZIP ]] )\ngzip 圧縮された文字列を作成する
gzeof /// int gzeof ( resource $zp )\ngz ファイルポインタがファイル終端かどうか調べる
gzfile /// array gzfile ( string $filename [, int $use_include_path= 0 ] )\ngzファイル全体を配列に読み込む
gzgetc /// string gzgetc ( resource $zp )\ngz ファイルへのポインタから文字を得る
gzgets /// string gzgets ( resource $zp , int $length )\nファイルポインタから 1 行を得る
gzgetss /// string gzgetss ( resource $zp , int $length [, string $allowable_tags ] )\ngzファイルへのポインタから1行を得て、HTMLタグを取り除く
gzinflate /// string gzinflate ( string $data [, int $length= 0 ] )\ndeflate圧縮された文字列を解凍する
gzopen /// resource gzopen ( string $filename , string $mode [, int $use_include_path= 0 ] )\ngz ファイルを開く
gzpassthru /// int gzpassthru ( resource $zp )\ngzファイルへのポインタから残りのデータ全部を出力する
gzputs /// のエイリアス gzwrite
gzread /// string gzread ( resource $zp , int $length )\nバイナリ対応のgzファイル読み込み
gzrewind /// bool gzrewind ( resource $zp )\ngz ファイルポインタの示す位置を元に戻す
gzseek /// int gzseek ( resource $zp , int $offset [, int $whence= SEEK_SET ] )\ngz ファイルポインタの位置を移動する
gztell /// int gztell ( resource $zp )\ngz ファイルポインタの読み込み/書き込み位置を返します
gzuncompress /// string gzuncompress ( string $data [, int $length= 0 ] )\n圧縮された文字列を解凍する
gzwrite /// int gzwrite ( resource $zp , string $string [, int $length ] )\nバイナリセーフな gz ファイル書き込み
readgzfile /// int readgzfile ( string $filename [, int $use_include_path= 0 ] )\ngz ファイルを出力する
zlib_get_coding_type /// string zlib_get_coding_type ( void )\n出力圧縮に使用されたコーディングの種類を返す
m_checkstatus /// int m_checkstatus ( resource $conn , int $identifier )\nトランザクションが完了したかどうかを確かめる
m_completeauthorizations /// int m_completeauthorizations ( resource $conn , int &$array )\nキューの中の認証済み件数を数え、その ID の配列を返す
m_connect /// int m_connect ( resource $conn )\nMCVE との接続を確立する
m_connectionerror /// string m_connectionerror ( resource $conn )\n接続が失敗した理由をテキストで取得する
m_deletetrans /// bool m_deletetrans ( resource $conn , int $identifier )\nMCVE_CONN 構造体から、指定したトランザクションを削除する
m_destroyconn /// bool m_destroyconn ( resource $conn )\n接続および MCVE_CONN 構造体を破壊する
m_destroyengine /// void m_destroyengine ( void )\nIP/SSL 接続に関連付けられたメモリを開放する
m_getcell /// string m_getcell ( resource $conn , int $identifier , string $column , int $row )\nカンマ区切りの応答から、カラム名を指定してセルを取得する
m_getcellbynum /// string m_getcellbynum ( resource $conn , int $identifier , int $column , int $row )\nカンマ区切りの応答から、カラム番号を指定してセルを取得する
m_getcommadelimited /// string m_getcommadelimited ( resource $conn , int $identifier )\nMCVE が返すデータを、もとのカンマ区切り形式のままで取得する
m_getheader /// string m_getheader ( resource $conn , int $identifier , int $column_num )\nカンマ区切りの応答から、カラム名を取得する
m_initconn /// resource m_initconn ( void )\nMCVE_CONN 構造体を作成し、初期化する
m_initengine /// int m_initengine ( string $location )\nIP/SSL 通信のためのクライアントの準備をする
m_iscommadelimited /// int m_iscommadelimited ( resource $conn , int $identifier )\n応答がカンマ区切りかどうかを調べる
m_maxconntimeout /// bool m_maxconntimeout ( resource $conn , int $secs )\nAPI が MCVE への接続を試みる時間の最大値
m_monitor /// int m_monitor ( resource $conn )\nMCVE との通信 (データの送受信) を非ブロックモードで行う
m_numcolumns /// int m_numcolumns ( resource $conn , int $identifier )\nカンマ区切りの応答の中のカラム数を返す
m_numrows /// int m_numrows ( resource $conn , int $identifier )\nカンマ区切りの応答の中の行数を返す
m_parsecommadelimited /// int m_parsecommadelimited ( resource $conn , int $identifier )\nカンマ区切りの応答をパースし、m_getcell などが動作するようにする
m_responsekeys /// array m_responsekeys ( resource $conn , int $identifier )\nこのトランザクションの応答パラメータとして使用することが可能な キーを表す文字列の配列を返す
m_responseparam /// string m_responseparam ( resource $conn , int $identifier , string $key )\nカスタム応答パラメータを取得する
m_returnstatus /// int m_returnstatus ( resource $conn , int $identifier )\nトランザクションが成功したかどうかを確かめる
m_setblocking /// int m_setblocking ( resource $conn , int $tf )\n接続モードを、ブロックモードあるいは非ブロックモードに設定する
m_setdropfile /// int m_setdropfile ( resource $conn , string $directory )\nDrop-File への接続方法を設定する
m_setip /// int m_setip ( resource $conn , string $host , int $port )\nIP での接続方法を設定する
m_setssl_cafile /// int m_setssl_cafile ( resource $conn , string $cafile )\nサーバ証明書を検証するための SSL CA (Certificate Authority) ファイルを設定する
m_setssl_files /// int m_setssl_files ( resource $conn , string $sslkeyfile , string $sslcertfile )\nサーバがクライアント証明書による検証を要求している場合に、証明書のキーファイルを設定する
m_setssl /// int m_setssl ( resource $conn , string $host , int $port )\nSSL での接続方法を設定する
m_settimeout /// int m_settimeout ( resource $conn , int $seconds )\n(トランザクション単位の) 最大の時間を設定する
m_sslcert_gen_hash /// string m_sslcert_gen_hash ( string $filename )\nSSL クライアント証明書の検証のためのハッシュを作成する
m_transactionssent /// int m_transactionssent ( resource $conn )\n送信バッファが空かどうかを確かめる
m_transinqueue /// int m_transinqueue ( resource $conn )\nクライアントキューの中のトランザクション数を返す
m_transkeyval /// int m_transkeyval ( resource $conn , int $identifier , string $key , string $value )\nトランザクションにキー/値のペアを追加する。transparam() の代替関数
m_transnew /// int m_transnew ( resource $conn )\n新しいトランザクションを開始する
m_transsend /// int m_transsend ( resource $conn , int $identifier )\nトランザクションを終了し、送信する
m_uwait /// int m_uwait ( int $microsecs )\nx マイクロ秒だけ待つ
m_validateidentifier /// int m_validateidentifier ( resource $conn , int $tf )\n指定したトランザクションについて、ID の検証を行うかどうか
m_verifyconnection /// bool m_verifyconnection ( resource $conn , int $tf )\n接続の検証を行うために PING を行うかどうかを設定する
m_verifysslcert /// bool m_verifysslcert ( resource $conn , int $tf )\nサーバの ssl 証明書を検証するかどうかを設定する
calcul_hmac /// string calcul_hmac ( string $clent , string $siretcode , string $price , string $reference , string $validity , string $taxation , string $devise , string $language )\nhmac を取得する (八つの引数が必要)
calculhmac /// string calculhmac ( string $clent , string $data )\nhmac キーを取得する (2 つの引数が必要)
nthmac /// string nthmac ( string $clent , string $data )\nnthmac キーを取得する (2 つの引数が必要)
signeurlpaiement /// string nthmac ( string $clent , string $data )\n決済 url を取得する (2 つの引数が必要)
crack_check /// bool crack_check ( resource $dictionary , string $password )\n指定したパスワードに関して強度チェックを行う
crack_closedict /// bool crack_closedict ([ resource $dictionary ] )\nオープンされているCrackLib辞書を閉じる
crack_getlastmessage /// string crack_getlastmessage ( void )\n直近の強度チェックからのメッセージを返す
crack_opendict /// resource crack_opendict ( string $dictionary )\n新規CrackLib辞書をオープンする
hash_algos /// array hash_algos ( void )\n登録されているハッシュアルゴリズムの一覧を返す
hash_copy /// resource hash_copy ( resource $context )\nハッシュコンテキストをコピーする
hash_file /// string hash_file ( string $algo , string $filename [, bool $raw_output= false ] )\nファイルの内容から、ハッシュ値を生成する
hash_final /// string hash_final ( resource $context [, bool $raw_output= false ] )\n段階的なハッシュ処理を終了し、出来上がったダイジェストを返す
hash_hmac_file /// string hash_hmac_file ( string $algo , string $filename , string $key [, bool $raw_output= false ] )\nHMAC 方式を使用して、指定されたファイルの内容からハッシュ値を生成する
hash_hmac /// string hash_hmac ( string $algo , string $data , string $key [, bool $raw_output= false ] )\nHMAC 方式を使用してハッシュ値を生成する
hash_init /// resource hash_init ( string $algo [, int $options= 0 [, string $key= NULL ]] )\n段階的なハッシュコンテキストを初期化する
hash_update_file /// bool hash_update_file ( resource $context , string $filename [, resource $context= NULL ] )\nアクティブなハッシュコンテキストに、ファイルから データを投入する
hash_update_stream /// int hash_update_stream ( resource $context , resource $handle [, int $length= -1 ] )\nアクティブなハッシュコンテキストに、オープンしているストリームから データを投入する
hash_update /// bool hash_update ( resource $context , string $data )\nアクティブなハッシュコンテキストにデータを投入する
hash /// string hash ( string $algo , string $data [, bool $raw_output= false ] )\nハッシュ値 (メッセージダイジェスト) を生成する
mcrypt_cbc /// string mcrypt_cbc ( int $cipher , string $key , string $data , int $mode [, string $iv ] )\nCBC モードでデータを暗号化/復号する
mcrypt_cfb /// string mcrypt_cfb ( int $cipher , string $key , string $data , int $mode , string $iv )\nCFB モードでデータを暗号化/復号する
mcrypt_create_iv /// string mcrypt_create_iv ( int $size [, int $source= MCRYPT_DEV_RANDOM ] )\n乱数ソースから初期化ベクトル(IV)を生成する
mcrypt_decrypt /// string mcrypt_decrypt ( string $cipher , string $key , string $data , string $mode [, string $iv ] )\n指定したパラメータで暗号化されたテキストを復号する
mcrypt_ecb /// string mcrypt_ecb ( int $cipher , string $key , string $data , int $mode )\n非推奨: ECB モードでデータを暗号化/復号する
mcrypt_enc_get_algorithms_name /// string mcrypt_enc_get_algorithms_name ( resource $td )\nオープンされたアルゴリズムの名前を返す
mcrypt_enc_get_block_size /// int mcrypt_enc_get_block_size ( resource $td )\nオープンされたアルゴリズムのブロックサイズを返す
mcrypt_enc_get_iv_size /// int mcrypt_enc_get_iv_size ( resource $td )\nオープンされたアルゴリズムの IV の大きさを返す
mcrypt_enc_get_key_size /// int mcrypt_enc_get_key_size ( resource $td )\nオープンされたモードでサポートされる最大キー長を返す
mcrypt_enc_get_modes_name /// string mcrypt_enc_get_modes_name ( resource $td )\nオープンされたモードの名前を返す
mcrypt_enc_get_supported_key_sizes /// array mcrypt_enc_get_supported_key_sizes ( resource $td )\nオープンされたアルゴリズムでサポートされるキー長を配列にして返す
mcrypt_enc_is_block_algorithm_mode /// bool mcrypt_enc_is_block_algorithm_mode ( resource $td )\nオープンされたモードの暗号がブロックモードで動作するかどうかを調べる
mcrypt_enc_is_block_algorithm /// bool mcrypt_enc_is_block_algorithm ( resource $td )\nオープンされたモードの暗号がブロックアルゴリズムであるかどうかを調べる
mcrypt_enc_is_block_mode /// bool mcrypt_enc_is_block_mode ( resource $td )\nオープンされたモードがブロック出力を行うかどうかを調べる
mcrypt_enc_self_test /// int mcrypt_enc_self_test ( resource $td )\nオープンしたモジュールのセルフテストを実行する
mcrypt_encrypt /// string mcrypt_encrypt ( string $cipher , string $key , string $data , string $mode [, string $iv ] )\n指定したパラメータでプレーンテキストを暗号化する
mcrypt_generic_deinit /// bool mcrypt_generic_deinit ( resource $td )\n暗号化モジュールを終了する
mcrypt_generic_end /// bool mcrypt_generic_end ( resource $td )\n暗号処理を終了する
mcrypt_generic_init /// int mcrypt_generic_init ( resource $td , string $key , string $iv )\n暗号化に必要な全てのバッファを初期化する
mcrypt_generic /// string mcrypt_generic ( resource $td , string $data )\nデータを暗号化する
mcrypt_get_block_size /// int mcrypt_get_block_size ( int $cipher )\n指定した暗号のブロックサイズを得る
mcrypt_get_cipher_name /// string mcrypt_get_cipher_name ( int $cipher )\n指定した暗号の名前を得る
mcrypt_get_iv_size /// int mcrypt_get_iv_size ( string $cipher , string $mode )\n指定した暗号/モードの組み合わせに属する IV の大きさを返す
mcrypt_get_key_size /// int mcrypt_get_key_size ( int $cipher )\n指定した暗号のキーの長さを得る
mcrypt_list_algorithms /// array mcrypt_list_algorithms ([ string $lib_dir= ini_get("mcrypt.algorithms_dir") ] )\nサポートされる全ての暗号を配列として取得する
mcrypt_list_modes /// array mcrypt_list_modes ([ string $lib_dir= ini_get("mcrypt.algorithms_dir") ] )\nサポートされる全てのモードの配列を取得する
mcrypt_module_close /// bool mcrypt_module_close ( resource $td )\nmcrypt モジュールを閉じる
mcrypt_module_get_algo_block_size /// int mcrypt_module_get_algo_block_size ( string $algorithm [, string $lib_dir ] )\n指定したアルゴリズムのブロック長を返す
mcrypt_module_get_algo_key_size /// int mcrypt_module_get_algo_key_size ( string $algorithm [, string $lib_dir ] )\nオープンされたモードでサポートされる最大キー長を返す
mcrypt_module_get_supported_key_sizes /// array mcrypt_module_get_supported_key_sizes ( string $algorithm [, string $lib_dir ] )\nオープンされたアルゴリズムでサポートされるキーのサイズを配列として返す
mcrypt_module_is_block_algorithm_mode /// bool mcrypt_module_is_block_algorithm_mode ( string $mode [, string $lib_dir ] )\n指定したモジュールがブロックアルゴリズムであるかどうかを返す
mcrypt_module_is_block_algorithm /// bool mcrypt_module_is_block_algorithm ( string $algorithm [, string $lib_dir ] )\n指定したアルゴリズムがブロックアルゴリズムであるかを調べる
mcrypt_module_is_block_mode /// bool mcrypt_module_is_block_mode ( string $mode [, string $lib_dir ] )\n指定したモードがブロック出力を行うかどうかを返す
mcrypt_module_open /// resource mcrypt_module_open ( string $algorithm , string $algorithm_directory , string $mode , string $mode_directory )\n使用するアルゴリズムおよびモードのモジュールをオープンする
mcrypt_module_self_test /// bool mcrypt_module_self_test ( string $algorithm [, string $lib_dir ] )\n指定したモジュールのセルフテストを実行する
mcrypt_ofb /// string mcrypt_ofb ( int $cipher , string $key , string $data , int $mode , string $iv )\nOFB モードでデータを暗号化/復号する
mdecrypt_generic /// string mdecrypt_generic ( resource $td , string $data )\nデータを復号する
mhash_count /// int mhash_count ( void )\n利用可能なハッシュ ID の最大値を得る
mhash_get_block_size /// int mhash_get_block_size ( int $hash )\n指定したハッシュのブロックサイズを得る
mhash_get_hash_name /// string mhash_get_hash_name ( int $hash )\n指定したハッシュの名前を得る
mhash_keygen_s2k /// string mhash_keygen_s2k ( int $hash , string $password , string $salt , int $bytes )\nキーを生成する
mhash /// string mhash ( int $hash , string $data [, string $key ] )\nハッシュ値を計算する
openssl_csr_export_to_file /// bool openssl_csr_export_to_file ( resource $csr , string $outfilename [, bool $notext= true ] )\nCSR をファイルにエクスポートする
openssl_csr_export /// bool openssl_csr_export ( resource $csr , string &$out [, bool $notext= true ] )\nCSR を文字列としてエクスポートする
openssl_csr_get_public_key /// resource openssl_csr_get_public_key ( mixed $csr [, bool $use_shortnames= true ] )\nCERT の公開鍵を返す
openssl_csr_get_subject /// array openssl_csr_get_subject ( mixed $csr [, bool $use_shortnames= true ] )\nCERT の subject を返す
openssl_csr_new /// mixed openssl_csr_new ( array $dn , resource &$privkey [, array $configargs [, array $extraattribs ]] )\nCSR を作成する
openssl_csr_sign /// resource openssl_csr_sign ( mixed $csr , mixed $cacert , mixed $priv_key , int $days [, array $configargs [, int $serial= 0 ]] )\n他の CERT(あるいは自分自身)で証明書をサインする
openssl_error_string /// string openssl_error_string ( void )\nOpenSSL エラーメッセージを返す
openssl_free_key /// void openssl_free_key ( resource $key_identifier )\nキーリソースを開放する
openssl_get_privatekey /// openssl_pkey_get_private のエイリアス
openssl_get_publickey /// openssl_pkey_get_public のエイリアス
openssl_open /// bool openssl_open ( string $sealed_data , string &$open_data , string $env_key , mixed $priv_key_id )\nシール(暗号化)されたデータをオープン(復号)する
openssl_pkcs12_export_to_file /// bool openssl_pkcs12_export_to_file ( mixed $x509 , string $filename , mixed $priv_key , string $pass [, array $args ] )\nPKCS#12 互換の証明書保存ファイルをエクスポートする
openssl_pkcs12_export /// bool openssl_pkcs12_export ( mixed $x509 , string &$out , mixed $priv_key , string $pass [, array $args ] )\nPKCS#12 互換の証明書保存ファイルを変数にエクスポートする
openssl_pkcs12_read /// bool openssl_pkcs12_read ( string $pkcs12 , array &$certs , string $pass )\nPKCS#12 認証ストアをパースして配列形式にする
openssl_pkcs7_decrypt /// bool openssl_pkcs7_decrypt ( string $infilename , string $outfilename , mixed $recipcert [, mixed $recipkey ] )\nS/MIME 暗号化されたメッセージを復号する
openssl_pkcs7_encrypt /// bool openssl_pkcs7_encrypt ( string $infile , string $outfile , mixed $recipcerts , array $headers [, int $flags= 0 [, int $cipherid= OPENSSL_CIPHER_RC2_40 ]] )\nS/MIME メッセージを暗号化する
openssl_pkcs7_sign /// bool openssl_pkcs7_sign ( string $infilename , string $outfilename , mixed $signcert , mixed $privkey , array $headers [, int $flags= PKCS7_DETACHED [, string $extracerts ]] )\nS/MIME メッセージにサインする
openssl_pkcs7_verify /// mixed openssl_pkcs7_verify ( string $filename , int $flags [, string $outfilename [, array $cainfo [, string $extracerts [, string $content ]]]] )\nS/MIME でサインされたメッセージの署名を検証する
openssl_pkey_export_to_file /// bool openssl_pkey_export_to_file ( mixed $key , string $outfilename [, string $passphrase [, array $configargs ]] )\nエクスポート可能な形式で、キーをファイルに取得する
openssl_pkey_export /// bool openssl_pkey_export ( mixed $key , string &$out [, string $passphrase [, array $configargs ]] )\nエクスポート可能な形式で、キーを文字列に取得する
openssl_pkey_free /// void openssl_pkey_free ( resource $key )\n秘密鍵を開放する
openssl_pkey_get_details /// array openssl_pkey_get_details ( resource $key )\nキーの詳細の配列を返す
openssl_pkey_get_private /// resource openssl_pkey_get_private ( mixed $key [, string $passphrase= "" ] )\n秘密鍵を取得する
openssl_pkey_get_public /// resource openssl_pkey_get_public ( mixed $certificate )\n証明書から公開鍵を抽出し、使用できるようにする
openssl_pkey_new /// resource openssl_pkey_new ([ array $configargs ] )\n新規に秘密鍵を生成する
openssl_private_decrypt /// bool openssl_private_decrypt ( string $data , string &$decrypted , mixed $key [, int $padding= OPENSSL_PKCS1_PADDING ] )\n秘密鍵でデータを復号する
openssl_private_encrypt /// bool openssl_private_encrypt ( string $data , string &$crypted , mixed $key [, int $padding= OPENSSL_PKCS1_PADDING ] )\n秘密鍵でデータを暗号化する
openssl_public_decrypt /// bool openssl_public_decrypt ( string $data , string &$decrypted , mixed $key [, int $padding= OPENSSL_PKCS1_PADDING ] )\n公開鍵でデータを復号する
openssl_public_encrypt /// bool openssl_public_encrypt ( string $data , string &$crypted , mixed $key [, int $padding= OPENSSL_PKCS1_PADDING ] )\n公開鍵でデータを暗号化する
openssl_seal /// int openssl_seal ( string $data , string &$sealed_data , array &$env_keys , array $pub_key_ids )\nデータをシール(暗号化)する
openssl_sign /// bool openssl_sign ( string $data , string &$signature , mixed $priv_key_id [, int $signature_alg= OPENSSL_ALGO_SHA1 ] )\n署名を生成する
openssl_verify /// int openssl_verify ( string $data , string $signature , mixed $pub_key_id [, int $signature_alg ] )\n署名を検証する
openssl_x509_check_private_key /// bool openssl_x509_check_private_key ( mixed $cert , mixed $key )\n秘密鍵が証明書に対応するかを確認する
openssl_x509_checkpurpose /// int openssl_x509_checkpurpose ( mixed $x509cert , int $purpose [, array $cainfo [, string $untrustedfile ]] )\n証明書が特定の目的に使用可能かどうか確認する
openssl_x509_export_to_file /// bool openssl_x509_export_to_file ( mixed $x509 , string $outfilename [, bool $notext ] )\n証明書をファイルにエクスポートする
openssl_x509_export /// bool openssl_x509_export ( mixed $x509 , string &$output [, bool $notext ] )\n証明書を文字列としてエクスポートする
openssl_x509_free /// void openssl_x509_free ( resource $x509cert )\n証明書リソースを開放する
openssl_x509_parse /// array openssl_x509_parse ( mixed $x509cert [, bool $shortnames= true ] )\nX509 証明書をパースし、配列として情報を返す
openssl_x509_read /// resource openssl_x509_read ( mixed $x509certdata )\nX.509 証明書をパースし、リソース ID を返す
dio_close /// void dio_close ( resource $fd )\nfd で指定したファイル記述子を閉じる
dio_fcntl /// mixed dio_fcntl ( resource $fd , int $cmd [, mixed $args ] )\nfd について C ライブラリの fcntl を実行する
dio_open /// resource dio_open ( string $filename , int $flags [, int $mode= 0 ] )\n指定したパーミッション flags と作成許可 mode を指定して 新しいファイルをオープンする
dio_read /// string dio_read ( resource $fd [, int $len= 1024 ] )\nファイル記述子からバイトデータを読み込む
dio_seek /// int dio_seek ( resource $fd , int $pos [, int $whence= SEEK_SET ] )\nfd 上で whence から pos に移動する
dio_stat /// array dio_stat ( resource $fd )\nファイル記述子 fd に関する stat 情報を取得する
dio_tcsetattr /// bool dio_tcsetattr ( resource $fd , array $options )\nシリアルポートの端末属性とボーレートを設定する
dio_truncate /// bool dio_truncate ( resource $fd , int $offset )\nファイル記述子 fd をオフセットバイトへ丸める
dio_write /// int dio_write ( resource $fd , string $data [, int $len= 0 ] )\nオプションで丸め長さを指定してデータを書き込む
chdir /// bool chdir ( string $directory )\nディレクトリを変更する
chroot /// bool chroot ( string $directory )\nルートディレクトリを変更する
closedir /// void closedir ([ resource $dir_handle ] )\nディレクトリハンドルをクローズする
getcwd /// string getcwd ( void )\nカレントのワーキングディレクトリを取得する
opendir /// resource opendir ( string $path [, resource $context ] )\nディレクトリハンドルをオープンする
readdir /// string readdir ([ resource $dir_handle ] )\nディレクトリハンドルからエントリを読み込む
rewinddir /// void rewinddir ([ resource $dir_handle ] )\nディレクトリハンドルを元に戻す
scandir /// array scandir ( string $directory [, int $sorting_order= 0 [, resource $context ]] )\n指定されたパスのファイルとディレクトリのリストを取得する
finfo_buffer /// string finfo_buffer ( resource $finfo , string $string= NULL [, int $options= FILEINFO_NONE [, resource $context= NULL ]] )\n文字列バッファの情報を返す
finfo_close /// bool finfo_close ( resource $finfo )\nfileinfo リソースを閉じる
finfo_file /// string finfo_file ( resource $finfo , string $file_name= NULL [, int $options= FILEINFO_NONE [, resource $context= NULL ]] )\nファイルについての情報を返す
finfo_open /// resource finfo_open ([ int $options= FILEINFO_NONE [, string $magic_file= NULL ]] )\n新しい fileinfo リソースを作成する
finfo_set_flags /// bool finfo_set_flags ( resource $finfo , int $options )\nlibmagic のオプションを設定する
basename /// string basename ( string $path [, string $suffix ] )\nパス中のファイル名の部分を返す
chgrp /// bool chgrp ( string $filename , mixed $group )\nファイルのグループを変更する
chmod /// bool chmod ( string $filename , int $mode )\nファイルのモードを変更する
chown /// bool chown ( string $filename , mixed $user )\nファイルの所有者を変更する
clearstatcache /// void clearstatcache ([ bool $clear_realpath_cache= false [, string $filename ]] )\nファイルのステータスのキャッシュをクリアする
copy /// bool copy ( string $source , string $dest [, resource $context ] )\nファイルをコピーする
delete /// void delete ( void )\nunlink か unset を参照してください
dirname /// string dirname ( string $path )\nパス中のディレクトリ名の部分を返す
disk_free_space /// float disk_free_space ( string $directory )\nディレクトリの利用可能なスペースを返す
disk_total_space /// float disk_total_space ( string $directory )\nディレクトリの全体サイズを返す
diskfreespace /// disk_free_space のエイリアス
fclose /// bool fclose ( resource $handle )\nオープンされたファイルポインタをクローズする
feof /// bool feof ( resource $handle )\nファイルポインタがファイル終端に達しているかどうか調べる
fflush /// bool fflush ( resource $handle )\n出力をファイルにフラッシュする
fgetc /// string fgetc ( resource $handle )\nファイルポインタから1文字取り出す
fgetcsv /// array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure [, string $escape ]]]] )\nファイルポインタから行を取得し、CSVフィールドを処理する
fgets /// string fgets ( resource $handle [, int $length ] )\nファイルポインタから 1 行取得する
fgetss /// string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )\nファイルポインタから 1 行取り出し、HTML タグを取り除く
file_exists /// bool file_exists ( string $filename )\nファイルまたはディレクトリが存在するかどうか調べる
file_get_contents /// string file_get_contents ( string $filename [, int $flags= 0 [, resource $context [, int $offset= -1 [, int $maxlen= -1 ]]]] )\nファイルの内容を全て文字列に読み込む
file_put_contents /// int file_put_contents ( string $filename , mixed $data [, int $flags= 0 [, resource $context ]] )\n文字列をファイルに書き込む
file /// array file ( string $filename [, int $flags= 0 [, resource $context ]] )\nファイル全体を読み込んで配列に格納する
fileatime /// int fileatime ( string $filename )\nファイルの最終アクセス時刻を取得する
filectime /// int filectime ( string $filename )\nファイルの inode 変更時刻を取得する
filegroup /// int filegroup ( string $filename )\nファイルのグループを取得する
fileinode /// int fileinode ( string $filename )\nファイルの inode を取得する
filemtime /// int filemtime ( string $filename )\nファイルの更新時刻を取得する
fileowner /// int fileowner ( string $filename )\nファイルの所有者を取得する
fileperms /// int fileperms ( string $filename )\nファイルのパーミッションを取得する
filesize /// int filesize ( string $filename )\nファイルのサイズを取得する
filetype /// string filetype ( string $filename )\nファイルタイプを取得する
flock /// bool flock ( resource $handle , int $operation [, int &$wouldblock ] )\n汎用のファイルロックを行う
fnmatch /// bool fnmatch ( string $pattern , string $string [, int $flags= 0 ] )\nファイル名がパターンにマッチするか調べる
fopen /// resource fopen ( string $filename , string $mode [, bool $use_include_path= false [, resource $context ]] )\nファイルまたは URL をオープンする
fpassthru /// int fpassthru ( resource $handle )\nファイルポインタ上に残っているすべてのデータを出力する
fputcsv /// int fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure ]] )\n行を CSV 形式にフォーマットし、ファイルポインタに書き込む
fputs /// fwrite のエイリアス
fread /// string fread ( resource $handle , int $length )\nバイナリセーフなファイルの読み込み
fscanf /// mixed fscanf ( resource $handle , string $format [, mixed &$... ] )\nフォーマットに基づきファイルからの入力を処理する
fseek /// int fseek ( resource $handle , int $offset [, int $whence ] )\nファイルポインタを移動する
fstat /// array fstat ( resource $handle )\nオープンしたファイルポインタからファイルに関する情報を取得する
ftell /// int ftell ( resource $handle )\nファイルの読み書き用ポインタの現在位置を返す
ftruncate /// bool ftruncate ( resource $handle , int $size )\nファイルを指定した長さに丸める
fwrite /// int fwrite ( resource $handle , string $string [, int $length ] )\nバイナリセーフなファイル書き込み処理
glob /// array glob ( string $pattern [, int $flags= 0 ] )\nパターンにマッチするパス名を探す
is_dir /// bool is_dir ( string $filename )\nファイルがディレクトリかどうかを調べる
is_executable /// bool is_executable ( string $filename )\nファイルが実行可能かどうかを調べる
is_file /// bool is_file ( string $filename )\n通常ファイルかどうかを調べる
is_link /// bool is_link ( string $filename )\nファイルがシンボリックリンクかどうかを調べる
is_readable /// bool is_readable ( string $filename )\nファイルが読み込み可能かどうかを知る
is_uploaded_file /// bool is_uploaded_file ( string $filename )\nHTTP POST でアップロードされたファイルかどうかを調べる
is_writable /// bool is_writable ( string $filename )\nファイルが書き込み可能かどうかを調べる
is_writeable /// is_writable のエイリアス
lchgrp /// bool lchgrp ( string $filename , mixed $group )\nシンボリックリンクのグループ所有権を変更する
lchown /// bool lchown ( string $filename , mixed $user )\nシンボリックリンクの所有者を変更する
link /// bool link ( string $target , string $link )\nハードリンクを作成する
linkinfo /// int linkinfo ( string $path )\nリンクに関する情報を取得する
lstat /// array lstat ( string $filename )\nファイルあるいはシンボリックリンクの情報を取得する
mkdir /// bool mkdir ( string $pathname [, int $mode= 0777 [, bool $recursive= false [, resource $context ]]] )\nディレクトリを作る
move_uploaded_file /// bool move_uploaded_file ( string $filename , string $destination )\nアップロードされたファイルを新しい位置に移動する
parse_ini_file /// array parse_ini_file ( string $filename [, bool $process_sections= false [, int $scanner_mode= INI_SCANNER_NORMAL ]] )\n設定ファイルをパースする
parse_ini_string /// array parse_ini_string ( string $ini [, bool $process_sections= false [, int $scanner_mode= INI_SCANNER_NORMAL ]] )\n設定文字列をパースする
pathinfo /// mixed pathinfo ( string $path [, int $options= PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME ] )\nファイルパスに関する情報を返す
pclose /// int pclose ( resource $handle )\nプロセスのファイルポインタをクローズする
popen /// resource popen ( string $command , string $mode )\nプロセスへのファイルポインタをオープンする
readfile /// int readfile ( string $filename [, bool $use_include_path= false [, resource $context ]] )\nファイルを出力する
readlink /// string readlink ( string $path )\nシンボリックリンク先を返す
realpath /// string realpath ( string $path )\n絶対パス名を返す
rename /// bool rename ( string $oldname , string $newname [, resource $context ] )\nファイルをリネームする
rewind /// bool rewind ( resource $handle )\nファイルポインタの位置を先頭に戻す
rmdir /// bool rmdir ( string $dirname [, resource $context ] )\nディレクトリを削除する
set_file_buffer /// stream_set_write_buffer のエイリアス
stat /// array stat ( string $filename )\nファイルに関する情報を取得する
symlink /// bool symlink ( string $target , string $link )\nシンボリックリンクを作成する
tempnam /// string tempnam ( string $dir , string $prefix )\n一意なファイル名を生成する
tmpfile /// resource tmpfile ( void )\nテンポラリファイルを作成する
touch /// bool touch ( string $filename [, int $time= time() [, int $atime ]] )\nファイルの最終アクセス時刻および最終更新日をセットする
umask /// int umask ([ int $mask ] )\n現在の umask を変更する
unlink /// bool unlink ( string $filename [, resource $context ] )\nファイルを削除する
inotify_add_watch /// int inotify_add_watch ( resource $inotify_instance , string $pathname , int $mask )\n初期化済みの inotify インスタンスに監視対象を追加する
inotify_init /// resource inotify_init ( void )\ninotify インスタンスを初期化する
inotify_queue_len /// int inotify_queue_len ( resource $inotify_instance )\n待機中のイベントがある場合に正の数を返す
inotify_read /// array inotify_read ( resource $inotify_instance )\ninotify インスタンスからイベントを読み込む
inotify_rm_watch /// bool inotify_rm_watch ( resource $inotify_instance , int $watch_descriptor )\n既存の監視を inotify インスタンスから削除する
mime_content_type /// string mime_content_type ( string $filename )\nファイルの MIME Content-type を検出する (非推奨)
xattr_get /// string xattr_get ( string $filename , string $name [, int $flags= 0 ] )\n拡張属性を取得する
xattr_list /// array xattr_list ( string $filename [, int $flags= 0 ] )\n拡張属性の一覧を取得する
xattr_remove /// bool xattr_remove ( string $filename , string $name [, int $flags= 0 ] )\n拡張属性を削除する
xattr_set /// bool xattr_set ( string $filename , string $name , string $value [, int $flags= 0 ] )\n拡張属性を設定する
xattr_supported /// bool xattr_supported ( string $filename [, int $flags= 0 ] )\nファイルシステムが拡張属性をサポートしているかどうかを調べる
xdiff_file_bdiff_size /// int xdiff_file_bdiff_size ( string $file )\nバイナリ diff を適用して作成するファイルのサイズを読み込む
xdiff_file_bdiff /// bool xdiff_file_bdiff ( string $old_file , string $new_file , string $dest )\n2 つのファイルのバイナリ diff を作成する
xdiff_file_bpatch /// bool xdiff_file_bpatch ( string $file , string $patch , string $dest )\nファイルにバイナリ diff 形式のパッチを適用する
xdiff_file_diff_binary /// bool xdiff_file_diff_binary ( string $file1 , string $file2 , string $dest )\nxiff_file_bdiff のエイリアス
xdiff_file_diff /// bool xdiff_file_diff ( string $old_file , string $new_file , string $dest [, int $context= 3 [, bool $minimal= false ]] )\n2 つのファイルの unified diff を作成する
xdiff_file_merge3 /// mixed xdiff_file_merge3 ( string $old_file , string $new_file1 , string $new_file2 , string $dest )\n3 つのファイルをひとつに統合する
xdiff_file_patch_binary /// bool xdiff_file_patch_binary ( string $file , string $patch , string $dest )\nxdiff_file_bpatch のエイリアス
xdiff_file_patch /// mixed xdiff_file_patch ( string $file , string $patch , string $dest [, int $flags= DIFF_PATCH_NORMAL ] )\nファイルに unified diff 形式のパッチを適用する
xdiff_file_rabdiff /// bool xdiff_file_rabdiff ( string $old_file , string $new_file , string $dest )\n2 つのファイルのバイナリ diff を、Rabin の polynomial fingerprinting アルゴリズムで作成する
xdiff_string_bdiff_size /// int xdiff_string_bdiff_size ( string $patch )\nバイナリ diff を適用して作成するファイルのサイズを読み込む
xdiff_string_bdiff /// string xdiff_string_bdiff ( string $old_data , string $new_data )\n2 つの文字列のバイナリ diff を作成する
xdiff_string_bpatch /// string xdiff_string_bpatch ( string $str , string $patch )\n文字列にバイナリ diff 形式のパッチを適用する
xdiff_string_diff_binary /// string xdiff_string_bdiff ( string $old_data , string $new_data )\nxdiff_string_bdiff のエイリアス
xdiff_string_diff /// string xdiff_string_diff ( string $old_data , string $new_data [, int $context= 3 [, bool $minimal= false ]] )\n2 つの文字列の unified diff を作成する
xdiff_string_merge3 /// mixed xdiff_string_merge3 ( string $old_data , string $new_data1 , string $new_data2 [, string &$error ] )\n3 つの文字列をひとつに統合する
xdiff_string_patch_binary /// string xdiff_string_patch_binary ( string $str , string $patch )\nxdiff_string_bpatch のエイリアス
xdiff_string_patch /// string xdiff_string_patch ( string $str , string $patch [, int $flags [, string &$error ]] )\n文字列に unified diff 形式のパッチを適用する
xdiff_string_rabdiff /// string xdiff_string_bdiff ( string $old_data , string $new_data )\n2 つの文字列のバイナリ diff を、Rabin の polynomial fingerprinting アルゴリズムで作成する
enchant_broker_describe /// array enchant_broker_describe ( resource $broker )\nEnchant プロバイダを列挙する
enchant_broker_dict_exists /// bool enchant_broker_dict_exists ( resource $broker , string $tag )\n辞書が存在するかどうかを調べる。空でないタグを使用する
enchant_broker_free_dict /// bool enchant_broker_free_dict ( resource $dict )\n辞書リソースを開放する
enchant_broker_free /// bool enchant_broker_free ( resource $broker )\nブローカーリソースおよびその辞書を開放する
enchant_broker_get_error /// string enchant_broker_get_error ( resource $broker )\nブローカーの直近のエラーを返す
enchant_broker_init /// resource enchant_broker_init ( void )\n要求を満たすブローカーオブジェクトを作成する
enchant_broker_list_dicts /// mixed enchant_broker_list_dicts ( resource $broker )\n使用可能な辞書の一覧を返す
enchant_broker_request_dict /// resource enchant_broker_request_dict ( resource $broker , string $tag )\nタグを使用して新しい辞書を作成する
enchant_broker_request_pwl_dict /// resource enchant_broker_request_pwl_dict ( resource $broker , string $filename )\nPWL ファイルを使用して辞書を作成する
enchant_broker_set_ordering /// bool enchant_broker_set_ordering ( resource $broker , string $tag , string $ordering )\nその言語で使用する辞書の優先順位を宣言する
enchant_dict_add_to_personal /// void enchant_dict_add_to_personal ( resource $dict , string $word )\nパーソナル単語リストに単語を追加する
enchant_dict_add_to_session /// void enchant_dict_add_to_session ( resource $dict , string $word )\n'単語' を、このスペルチェックセッションに追加する
enchant_dict_check /// bool enchant_dict_check ( resource $dict , string $word )\n単語のスペルが正しいかどうかを調べる
enchant_dict_describe /// mixed enchant_dict_describe ( resource $dict )\n個々の辞書について説明する
enchant_dict_get_error /// string enchant_dict_get_error ( resource $dict )\n現在のスペリングセッションの直近のエラーを返す
enchant_dict_is_in_session /// bool enchant_dict_is_in_session ( resource $dict , string $word )\nこのスペリングセッションに '単語' が存在するかどうかを調べる
enchant_dict_quick_check /// bool enchant_dict_quick_check ( resource $dict , string $word [, array &$suggestions ] )\n単語のスペルが正しいかどうかを調べ、修正候補を提供する
enchant_dict_store_replacement /// void enchant_dict_store_replacement ( resource $dict , string $mis , string $cor )\n単語の修正候補を追加する
enchant_dict_suggest /// array enchant_dict_suggest ( resource $dict , string $word )\n修正候補となる値の一覧を返す
fribidi_log2vis /// string fribidi_log2vis ( string $str , string $direction , int $charset )\n論理表記を物理表記に変換する
bind_textdomain_codeset /// string bind_textdomain_codeset ( string $domain , string $codeset )\nDOMAIN メッセージカタログから返されるメッセージの文字エンコーディングを指定する
bindtextdomain /// string bindtextdomain ( string $domain , string $directory )\nドメインのパスを設定する
dcgettext /// string dcgettext ( string $domain , string $message , int $category )\n単一の参照に関するドメインを上書きする
dcngettext /// string dcngettext ( string $domain , string $msgid1 , string $msgid2 , int $n , int $category )\ndcgettext の複数形版
dgettext /// string dgettext ( string $domain , string $message )\n現在のドメインを上書きする
dngettext /// string dngettext ( string $domain , string $msgid1 , string $msgid2 , int $n )\ndgettext の複数形版
gettext /// string gettext ( string $message )\n現在のドメインのメッセージを参照する
ngettext /// string ngettext ( string $msgid1 , string $msgid2 , int $n )\ngettext の複数形版
textdomain /// string textdomain ( string $text_domain )\nデフォルトドメインを設定する
locale_get_default /// string locale_get_default ( void )\nデフォルトのロケールを取得する
locale_set_default /// bool locale_set_default ( string $name )\nデフォルトのロケールを設定する
iconv_get_encoding /// mixed iconv_get_encoding ([ string $type= "all" ] )\niconv 拡張モジュールの内部設定変数を取得する
iconv_mime_decode_headers /// array iconv_mime_decode_headers ( string $encoded_headers [, int $mode= 0 [, string $charset= ini_set("iconv.internal_encoding") ]] )\n複数の MIME ヘッダフィールドを一度にデコードする
iconv_mime_decode /// string iconv_mime_decode ( string $encoded_header [, int $mode= 0 [, string $charset= ini_set("iconv.internal_encoding") ]] )\nMIME ヘッダフィールドをデコードする
iconv_mime_encode /// string iconv_mime_encode ( string $field_name , string $field_value [, array $preferences= NULL ] )\nMIME ヘッダフィールドを作成する
iconv_set_encoding /// bool iconv_set_encoding ( string $type , string $charset )\n文字エンコーディング変換用の設定を行なう
iconv_strlen /// int iconv_strlen ( string $str [, string $charset= ini_set("iconv.internal_encoding") ] )\n文字列の文字数を返す
iconv_strpos /// int iconv_strpos ( string $haystack , string $needle [, int $offset= 0 [, string $charset= ini_set("iconv.internal_encoding") ]] )\n文字列が最初に現れる場所を見つける
iconv_strrpos /// int iconv_strrpos ( string $haystack , string $needle [, string $charset= ini_set("iconv.internal_encoding") ] )\n文字列が最後に現れる場所を見つける
iconv_substr /// string iconv_substr ( string $str , int $offset [, int $length= 0 [, string $charset= ini_set("iconv.internal_encoding") ]] )\n文字列の一部を切り出す
iconv /// string iconv ( string $in_charset , string $out_charset , string $str )\n文字列を指定した文字エンコーディングに変換する
ob_iconv_handler /// string ob_iconv_handler ( string $contents , int $status )\n出力バッファハンドラとして文字エンコーディングを変換する
idn_strerror /// string idn_strerror ( int $errorcode )\nIDNA エラーコードに対応する文字列を返す
idn_to_ascii /// string idn_to_ascii ( string $utf8_domain [, int &$errorcode ] )\nUTF-8 エンコードされたドメイン名を ASCII に変換する
idn_to_utf8 /// string idn_to_utf8 ( string $ascii_domain [, int &$errorcode ] )\nASCII エンコードされたドメイン名を UTF-8 に変換する
grapheme_extract /// string grapheme_extract ( string $haystack , int $size [, int $extract_type [, int $start [, int &$next ]]] )\nデフォルトの書記素クラスタシーケンスをテキストバッファから取り出す関数。 テキストは UTF-8 でエンコードされている必要がある
grapheme_stripos /// int grapheme_stripos ( string $haystack , string $needle [, int $offset ] )\n大文字小文字を区別せず、文字列内で最初にあらわれる場所の (書記素単位の) 位置を見つける
grapheme_stristr /// string grapheme_stristr ( string $haystack , string $needle [, bool $before_needle ] )\n大文字小文字を区別せず、haystack 文字列の中で needle が最初に登場した場所以降の部分文字列を返す
grapheme_strlen /// int grapheme_strlen ( string $input )\n書記素単位で文字列の長さを取得する
grapheme_strpos /// int grapheme_strpos ( string $haystack , string $needle [, int $offset ] )\n文字列内で最初にあらわれる場所の (書記素単位の) 位置を見つける
grapheme_strripos /// int grapheme_strripos ( string $haystack , string $needle [, int $offset ] )\n大文字小文字を区別せず、文字列内で最後にあらわれる場所の (書記素単位の) 位置を見つける
grapheme_strrpos /// int grapheme_strrpos ( string $haystack , string $needle [, int $offset ] )\n文字列内で最後にあらわれる場所の (書記素単位の) 位置を見つける
grapheme_strstr /// string grapheme_strstr ( string $haystack , string $needle [, bool $before_needle ] )\nhaystack 文字列の中で、needle が最初に登場した場所以降の部分文字列を返す
grapheme_substr /// int grapheme_substr ( string $string , int $start [, int $length ] )\n部分文字列を返す
intl_error_name /// string intl_error_name ( int $error_code )\n指定したエラーコードに対応する名前を取得する
intl_get_error_code /// int intl_get_error_code ( void )\n直近のエラーコードを取得する
intl_get_error_message /// string intl_get_error_message ( void )\n直近のエラーの説明を取得する
intl_is_failure /// bool intl_is_failure ( int $error_code )\n指定したエラーコードが失敗を表すかどうかを調べる
mb_check_encoding /// bool mb_check_encoding ([ string $var= NULL [, string $encoding= mb_internal_encoding() ]] )\n文字列が、指定したエンコーディングで有効なものかどうかを調べる
mb_convert_case /// string mb_convert_case ( string $str , int $mode= MB_CASE_UPPER [, string $encoding= mb_internal_encoding() ] )\n文字列に対してケースフォルディングを行う
mb_convert_encoding /// string mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding ] )\n文字エンコーディングを変換する
mb_convert_kana /// string mb_convert_kana ( string $str [, string $option [, string $encoding ]] )\nカナを("全角かな"、"半角かな"等に)変換する
mb_convert_variables /// string mb_convert_variables ( string $to_encoding , mixed $from_encoding , mixed &$vars [, mixed &$... ] )\n変数の文字コードを変換する
mb_decode_mimeheader /// string mb_decode_mimeheader ( string $str )\nMIME ヘッダフィールドの文字列をデコードする
mb_decode_numericentity /// string mb_decode_numericentity ( string $str , array $convmap , string $encoding )\nHTML 数値エンティティを文字にデコードする
mb_detect_encoding /// string mb_detect_encoding ( string $str [, mixed $encoding_list= mb_detect_order() [, bool $strict= false ]] )\n文字エンコーディングを検出する
mb_detect_order /// mixed mb_detect_order ([ mixed $encoding_list ] )\n文字エンコーディング検出順序を設定あるいは取得する
mb_encode_mimeheader /// string mb_encode_mimeheader ( string $str [, string $charset [, string $transfer_encoding [, string $linefeed [, int $indent ]]]] )\nMIMEヘッダの文字列をエンコードする
mb_encode_numericentity /// string mb_encode_numericentity ( string $str , array $convmap , string $encoding )\n文字を HTML 数値エンティティにエンコードする
mb_ereg_match /// bool mb_ereg_match ( string $pattern , string $string [, string $option= "msr" ] )\nマルチバイト文字列が正規表現に一致するか調べる
mb_ereg_replace /// string mb_ereg_replace ( string $pattern , string $replacement , string $string [, string $option= "msr" ] )\nマルチバイト文字列に正規表現による置換を行う
mb_ereg_search_getpos /// int mb_ereg_search_getpos ( void )\n次の正規表現検索を開始する位置を取得する
mb_ereg_search_getregs /// array mb_ereg_search_getregs ( void )\nマルチバイト文字列が正規表現に一致する部分があるか調べる
mb_ereg_search_init /// bool mb_ereg_search_init ( string $string [, string $pattern [, string $option= "msr" ]] )\nマルチバイト正規表現検索用の文字列と正規表現を設定する
mb_ereg_search_pos /// array mb_ereg_search_pos ([ string $pattern [, string $option= "ms" ]] )\n指定したマルチバイト文字列が正規表現に一致する部分の位置と長さを返す
mb_ereg_search_regs /// array mb_ereg_search_regs ([ string $pattern [, string $option= "ms" ]] )\n指定したマルチバイト文字列が正規表現に一致する部分を取得する
mb_ereg_search_setpos /// bool mb_ereg_search_setpos ( int $position )\n次の正規表現検索を開始する位置を設定する
mb_ereg_search /// bool mb_ereg_search ([ string $pattern [, string $option= "ms" ]] )\n指定したマルチバイト文字列が正規表現に一致するか調べる
mb_ereg /// int mb_ereg ( string $pattern , string $string [, array $regs ] )\nマルチバイト文字列に正規表現マッチを行う