-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp.snip
19228 lines (14421 loc) · 618 KB
/
php.snip
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
snippet abs
abbr 絶対値
abs(${1:$number})
snippet acos
abbr 逆余弦(アークコサイン)
acos(${1:$arg})
snippet acosh
abbr 逆双曲線余弦(アークハイパボリックコサイン)
acosh(${1:$arg})
snippet addcslashes
abbr C 言語と同様にスラッシュで文字列をクォートする
addcslashes(${1:$str}, ${2:$charlist})
snippet addslashes
abbr 文字列をスラッシュでクォートする
addslashes(${1:$str})
snippet aggregate_info
abbr 指定したオブジェクトの集約情報を取得する
aggregate_info(${1:$object})
snippet aggregate_methods_by_list
abbr 選択したクラスメソッドを、動的にオブジェクトに集約する
aggregate_methods_by_list(${1:$object}, ${2:$class_name}, ${3:$methods_list}, ${4:$exclude})
snippet aggregate_methods_by_regexp
abbr 正規表現を使用して選択したクラスメソッドを、 動的にオブジェクトに集約する
aggregate_methods_by_regexp(${1:$object}, ${2:$class_name}, ${3:$regexp}, ${4:$exclude})
snippet aggregate_methods
abbr クラスのメソッドを、動的にオブジェクトに集約する
aggregate_methods(${1:$object}, ${2:$class_name})
snippet aggregate_properties_by_list
abbr 選択したクラスプロパティを、動的にオブジェクトに集約する
aggregate_properties_by_list(${1:$object}, ${2:$class_name}, ${3:$properties_list}, ${4:$exclude})
snippet aggregate_properties_by_regexp
abbr 正規表現を使用して選択したクラスプロパティを、 動的にオブジェクトに集約する
aggregate_properties_by_regexp(${1:$object}, ${2:$class_name}, ${3:$regexp}, ${4:$exclude})
snippet aggregate_properties
abbr クラスのプロパティを、動的にオブジェクトに集約する
aggregate_properties(${1:$object}, ${2:$class_name})
snippet aggregate
abbr メソッドおよびプロパティの動的なクラス/オブジェクト集約を行う
aggregate(${1:$object}, ${2:$class_name})
snippet aggregation_info
abbr aggregate_info()のエイリアス
aggregation_info()
snippet apache_child_terminate
abbr このリクエストの後にApacheプロセスを終了する
apache_child_terminate()
snippet apache_get_modules
abbr ロードされた Apache モジュールのリストを取得する
apache_get_modules()
snippet apache_get_version
abbr Apache のバージョンを取得する
apache_get_version()
snippet apache_getenv
abbr Apache の subprocess_env 変数を取得する
apache_getenv(${1:$variable}, ${2:$walk_to_top})
snippet apache_lookup_uri
abbr リクエストの一部を指定したURIに対して行い、全ての情報を返す
apache_lookup_uri(${1:$filename})
snippet apache_note
abbr Apacheリクエスト記号(note)を取得/設定する
apache_note(${1:$note_name}, ${2:$note_value})
snippet apache_request_headers
abbr すべての HTTP リクエストヘッダを取得する
apache_request_headers()
snippet apache_reset_timeout
abbr Apache の書き込みタイマーをリセットする
apache_reset_timeout()
snippet apache_response_headers
abbr HTTPレスポンスヘッダを全て取得する
apache_response_headers()
snippet apache_setenv
abbr Apacheサブプロセスの環境変数を設定する
apache_setenv(${1:$variable}, ${2:$value}, ${3:$walk_to_top})
snippet apc_add
abbr 新規の変数をデータ領域にキャッシュする
apc_add(${1:$key}, ${2:$var}, ${3:$ttl})
snippet apc_bin_dump
abbr 指定したファイルおよびユーザー変数のバイナリダンプを取得する
apc_bin_dump(${1:$files}, ${2:$user_vars})
snippet apc_bin_dumpfile
abbr キャッシュされたファイルやユーザー変数のバイナリダンプをファイルに出力する
apc_bin_dumpfile(${1:$files}, ${2:$user_vars}, ${3:$filename}, ${4:$flags}, ${5:$context})
snippet apc_bin_load
abbr バイナリダンプを APC のファイル/ユーザーキャッシュに読み込む
apc_bin_load(${1:$data}, ${2:$flags})
snippet apc_bin_loadfile
abbr バイナリダンプをファイルから APC のファイル/ユーザーキャッシュに読み込む
apc_bin_loadfile(${1:$filename}, ${2:$context}, ${3:$flags})
snippet apc_cache_info
abbr APC のデータから、キャッシュされた情報を取得する
apc_cache_info(${1:$cache_type}, ${2:$limited})
snippet apc_cas
abbr 古い値を新しい値に更新する
apc_cas(${1:$key}, ${2:$old}, ${3:$new})
snippet apc_clear_cache
abbr APC キャッシュをクリアする
apc_clear_cache(${1:$cache_type})
snippet apc_compile_file
abbr ファイルをバイトコードキャッシュに保存し、すべてのフィルタをバイパスする
apc_compile_file(${1:$filename}, ${2:$atomic})
snippet apc_dec
abbr 保存した数値を減らす
apc_dec(${1:$key}, ${2:$step}, ${3:&$success})
snippet apc_define_constants
abbr 定数の組を定義し、それを取得あるいは一括定義する
apc_define_constants(${1:$key}, ${2:$constants}, ${3:$case_sensitive})
snippet apc_delete_file
abbr ファイルを opcode キャッシュから削除する
apc_delete_file(${1:$keys})
snippet apc_delete
abbr 格納されている変数をキャッシュから取り除く
apc_delete(${1:$key})
snippet apc_exists
abbr APC キーが存在するかどうかを調べる
apc_exists(${1:$keys})
snippet apc_fetch
abbr 格納されている変数をキャッシュから取得する
apc_fetch(${1:$key}, ${2:&$success})
snippet apc_inc
abbr 保存した数値を増やす
apc_inc(${1:$key}, ${2:$step}, ${3:&$success})
snippet apc_load_constants
abbr 定数群をキャッシュから読み込む
apc_load_constants(${1:$key}, ${2:$case_sensitive})
snippet apc_sma_info
abbr APC の共有メモリ割り当てに関する情報を取得する
apc_sma_info(${1:$limited})
snippet apc_store
abbr 変数をデータ領域にキャッシュする
apc_store(${1:$key}, ${2:$var}, ${3:$ttl})
snippet apd_breakpoint
abbr インタプリタの処理を停止し、ソケットからの CR を待つ
apd_breakpoint(${1:$debug_level})
snippet apd_callstack
abbr 現在のコールスタックを配列で返す
apd_callstack()
snippet apd_clunk
abbr 警告とコールスタックをスローする
apd_clunk(${1:$warning}, ${2:$delimiter})
snippet apd_continue
abbr インタプリタを再開する
apd_continue(${1:$debug_level})
snippet apd_croak
abbr エラーとコールスタックをスローし、終了する
apd_croak(${1:$warning}, ${2:$delimiter})
snippet apd_dump_function_table
abbr 現在の関数テーブルを出力する
apd_dump_function_table()
snippet apd_dump_persistent_resources
abbr すべての持続的なリソースを配列で返す
apd_dump_persistent_resources()
snippet apd_dump_regular_resources
abbr 現在のすべての一般リソースを配列で返す
apd_dump_regular_resources()
snippet apd_echo
abbr デバッグ用ソケットに表示する
apd_echo(${1:$output})
snippet apd_get_active_symbols
abbr ローカルスコープ内の現在の変数名を配列で取得する
apd_get_active_symbols()
snippet apd_set_pprof_trace
abbr セッションのデバッグを開始する
apd_set_pprof_trace(${1:$dump_directory}, ${2:$fragment})
snippet apd_set_session_trace_socket
abbr リモートセッションのデバッグを開始する
apd_set_session_trace_socket(${1:$tcp_server}, ${2:$socket_type}, ${3:$port}, ${4:$debug_level})
snippet apd_set_session_trace
abbr セッションのデバッグを開始する
apd_set_session_trace(${1:$debug_level}, ${2:$dump_directory})
snippet apd_set_session
abbr 現在のデバッグレベルを変更あるいは設定する
apd_set_session(${1:$debug_level})
snippet array_change_key_case
abbr 配列のすべてのキーの大文字小文字を変更する
array_change_key_case(${1:$array}, ${2:$case})
snippet array_chunk
abbr 配列を分割する
array_chunk(${1:$array}, ${2:$size}, ${3:$preserve_keys})
snippet array_column
abbr 入力配列から単一のカラムの値を返す
array_column(${1:$array}, ${2:$column_key}, ${3:$index_key})
snippet array_combine
abbr 一方の配列をキーとして、もう一方の配列を値として、ひとつの配列を生成する
array_combine(${1:$keys}, ${2:$values})
snippet array_count_values
abbr 配列の値の数を数える
array_count_values(${1:$array})
snippet array_diff_assoc
abbr 追加された添字の確認を含めて配列の差を計算する
array_diff_assoc(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_diff_key
abbr キーを基準にして配列の差を計算する
array_diff_key(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_diff_uassoc
abbr ユーザーが指定したコールバック関数を利用し、 追加された添字の確認を含めて配列の差を計算する
array_diff_uassoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$key_compare_func})
snippet array_diff_ukey
abbr キーを基準にし、コールバック関数を用いて配列の差を計算する
array_diff_ukey(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$key_compare_func})
snippet array_diff
abbr 配列の差を計算する
array_diff(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_fill_keys
abbr キーを指定して、配列を値で埋める
array_fill_keys(${1:$keys}, ${2:$value})
snippet array_fill
abbr 配列を指定した値で埋める
array_fill(${1:$start_index}, ${2:$num}, ${3:$value})
snippet array_filter
abbr コールバック関数を使用して、配列の要素をフィルタリングする
array_filter(${1:$array}, ${2:$callback})
snippet array_flip
abbr 配列のキーと値を反転する
array_flip(${1:$array})
snippet array_intersect_assoc
abbr 追加された添字の確認も含めて配列の共通項を確認する
array_intersect_assoc(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_intersect_key
abbr キーを基準にして配列の共通項を計算する
array_intersect_key(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_intersect_uassoc
abbr 追加された添字の確認も含め、コールバック関数を用いて配列の共通項を確認する
array_intersect_uassoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$key_compare_func})
snippet array_intersect_ukey
abbr キーを基準にし、コールバック関数を用いて配列の共通項を計算する
array_intersect_ukey(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$key_compare_func})
snippet array_intersect
abbr 配列の共通項を計算する
array_intersect(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_key_exists
abbr 指定したキーまたは添字が配列にあるかどうかを調べる
array_key_exists(${1:$key}, ${2:$array})
snippet array_keys
abbr 配列のキーすべて、あるいはその一部を返す
array_keys(${1:$array}, ${2:$search_value}, ${3:$strict})
snippet array_map
abbr 指定した配列の要素にコールバック関数を適用する
array_map(${1:$callback}, ${2:$array1}, ${3:$...})
snippet array_merge_recursive
abbr 二つ以上の配列を再帰的にマージする
array_merge_recursive(${1:$array1}, ${2:$...})
snippet array_merge
abbr ひとつまたは複数の配列をマージする
array_merge(${1:$array1}, ${2:$...})
snippet array_multisort
abbr 複数の多次元の配列をソートする
array_multisort(${1:&$array1}, ${2:$array1_sort_order}, ${3:$array1_sort_flags}, ${4:$...})
snippet array_pad
abbr 指定長、指定した値で配列を埋める
array_pad(${1:$array}, ${2:$size}, ${3:$value})
snippet array_pop
abbr 配列の末尾から要素を取り除く
array_pop(${1:&$array})
snippet array_product
abbr 配列の値の積を計算する
array_product(${1:$array})
snippet array_push
abbr 一つ以上の要素を配列の最後に追加する
array_push(${1:&$array}, ${2:$value1}, ${3:$...})
snippet array_rand
abbr 配列から一つ以上の要素をランダムに取得する
array_rand(${1:$array}, ${2:$num})
snippet array_reduce
abbr コールバック関数を用いて配列を普通の値に変更することにより、配列を再帰的に減らす
array_reduce(${1:$array}, ${2:$callback}, ${3:$initial})
snippet array_replace_recursive
abbr 渡された配列の要素を再帰的に置き換える
array_replace_recursive(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_replace
abbr 渡された配列の要素を置き換える
array_replace(${1:$array1}, ${2:$array2}, ${3:$...})
snippet array_reverse
abbr 要素を逆順にした配列を返す
array_reverse(${1:$array}, ${2:$preserve_keys})
snippet array_search
abbr 指定した値を配列で検索し、見つかった場合に対応するキーを返す
array_search(${1:$needle}, ${2:$haystack}, ${3:$strict})
snippet array_shift
abbr 配列の先頭から要素を一つ取り出す
array_shift(${1:&$array})
snippet array_slice
abbr 配列の一部を展開する
array_slice(${1:$array}, ${2:$offset}, ${3:$length}, ${4:$preserve_keys})
snippet array_splice
abbr 配列の一部を削除し、他の要素で置換する
array_splice(${1:&$input}, ${2:$offset}, ${3:$length}, ${4:$replacement})
snippet array_sum
abbr 配列の中の値の合計を計算する
array_sum(${1:$array})
snippet array_udiff_assoc
abbr データの比較にコールバック関数を用い、追加された添字の確認を含めて配列の差を計算する
array_udiff_assoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func})
snippet array_udiff_uassoc
abbr データと添字の比較にコールバック関数を用い、追加された添字の確認を含めて配列の差を計算する
array_udiff_uassoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func}, ${5:$key_compare_func})
snippet array_udiff
abbr データの比較にコールバック関数を用い、配列の差を計算する
array_udiff(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func})
snippet array_uintersect_assoc
abbr データの比較にコールバック関数を用い、追加された添字の確認も含めて配列の共通項を計算する
array_uintersect_assoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func})
snippet array_uintersect_uassoc
abbr データと添字の比較にコールバック関数を用い、追加された添字の確認も含めて配列の共通項を計算する
array_uintersect_uassoc(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func}, ${5:$key_compare_func})
snippet array_uintersect
abbr データの比較にコールバック関数を用い、配列の共通項を計算する
array_uintersect(${1:$array1}, ${2:$array2}, ${3:$...}, ${4:$value_compare_func})
snippet array_unique
abbr 配列から重複した値を削除する
array_unique(${1:$array}, ${2:$sort_flags})
snippet array_unshift
abbr 一つ以上の要素を配列の最初に加える
array_unshift(${1:&$array}, ${2:$value1}, ${3:$...})
snippet array_values
abbr 配列の全ての値を返す
array_values(${1:$array})
snippet array_walk_recursive
abbr 配列の全ての要素に、ユーザー関数を再帰的に適用する
array_walk_recursive(${1:&$array}, ${2:$callback}, ${3:$userdata})
snippet array_walk
abbr 配列の全ての要素にユーザー関数を適用する
array_walk(${1:&$array}, ${2:$callback}, ${3:$userdata})
snippet array
abbr 配列を生成する
array(${1:$...})
snippet arsort
abbr 連想キーと要素との関係を維持しつつ配列を逆順にソートする
arsort(${1:&$array}, ${2:$sort_flags})
snippet asin
abbr 逆正弦(アークサイン)
asin(${1:$arg})
snippet asinh
abbr 逆双曲線正弦(アークハイパボリックサイン)
asinh(${1:$arg})
snippet asort
abbr 連想キーと要素との関係を維持しつつ配列をソートする
asort(${1:&$array}, ${2:$sort_flags})
snippet assert_options
abbr 様々な assert フラグを設定/取得する
assert_options(${1:$what}, ${2:$value})
snippet assert
abbr assertion が FALSE であるかどうかを調べる
assert(${1:$assertion}, ${2:$description})
snippet atan
abbr 逆正接(アークタンジェント)
atan(${1:$arg})
snippet atan2
abbr 2 変数のアークタンジェント
atan2(${1:$y}, ${2:$x})
snippet atanh
abbr 逆双曲線正接(アークハイパボリックタンジェント)
atanh(${1:$arg})
snippet autoload
abbr 未定義のクラスのロードを試みる
autoload(${1:$class})
snippet base_convert
abbr 数値の基数を任意に変換する
base_convert(${1:$number}, ${2:$frombase}, ${3:$tobase})
snippet base64_decode
abbr MIME base64 方式によりエンコードされたデータをデコードする
base64_decode(${1:$data}, ${2:$strict})
snippet base64_encode
abbr MIME base64 方式でデータをエンコードする
base64_encode(${1:$data})
snippet basename
abbr パスの最後にある名前の部分を返す
basename(${1:$path}, ${2:$suffix})
snippet bbcode_add_element
abbr bbcode 要素を追加する
bbcode_add_element(${1:$bbcode_container}, ${2:$tag_name}, ${3:$tag_rules})
snippet bbcode_add_smiley
abbr 顔文字をパーサに追加する
bbcode_add_smiley(${1:$bbcode_container}, ${2:$smiley}, ${3:$replace_by})
snippet bbcode_create
abbr BBCode リソースを作成する
bbcode_create(${1:$bbcode_initial_tags})
snippet bbcode_destroy
abbr BBCode_container リソースを閉じる
bbcode_destroy(${1:$bbcode_container})
snippet bbcode_parse
abbr 文字列を、指定した規則のもとでパースする
bbcode_parse(${1:$bbcode_container}, ${2:$to_parse})
snippet bbcode_set_arg_parser
abbr 別のパーサをアタッチして、引数のパース用に別のルールセットを設定する
bbcode_set_arg_parser(${1:$bbcode_container}, ${2:$bbcode_arg_parser})
snippet bbcode_set_flags
abbr パーサのオプションを設定あるいは変更する
bbcode_set_flags(${1:$bbcode_container}, ${2:$flags}, ${3:$mode})
snippet bcadd
abbr 2つの任意精度の数値を加算する
bcadd(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bccomp
abbr 2 つの任意精度数値を比較する
bccomp(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bcdiv
abbr 2つの任意精度数値で除算を行う
bcdiv(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bcmod
abbr 2 つの任意精度数値の剰余を取得する
bcmod(${1:$left_operand}, ${2:$modulus})
snippet bcmul
abbr 2つの任意精度数値の乗算を行う
bcmul(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bcompiler_load_exe
abbr bcompiler の exe ファイルを読み込み、クラスを生成する
bcompiler_load_exe(${1:$filename})
snippet bcompiler_load
abbr bz 圧縮されたファイルを読み込み、クラスを生成する
bcompiler_load(${1:$filename})
snippet bcompiler_parse_class
abbr クラスのバイトコードを読み込み、ユーザー関数をコールする
bcompiler_parse_class(${1:$class}, ${2:$callback})
snippet bcompiler_read
abbr ファイルハンドルを読み込み、クラスを生成する
bcompiler_read(${1:$filehandle})
snippet bcompiler_write_class
abbr 定義したクラスをバイトコードとして書き込む
bcompiler_write_class(${1:$filehandle}, ${2:$className}, ${3:$extends})
snippet bcompiler_write_constant
abbr 定義した定数をバイトコードとして書き込む
bcompiler_write_constant(${1:$filehandle}, ${2:$constantName})
snippet bcompiler_write_exe_footer
abbr 開始位置および exe 形式ファイルのフッタを書き込む
bcompiler_write_exe_footer(${1:$filehandle}, ${2:$startpos})
snippet bcompiler_write_file
abbr php ソースファイルをバイトコードとして書き込む
bcompiler_write_file(${1:$filehandle}, ${2:$filename})
snippet bcompiler_write_footer
abbr コンパイルされたデータの終了を示す文字 \x00 を書き込む
bcompiler_write_footer(${1:$filehandle})
snippet bcompiler_write_function
abbr 定義した関数をバイトコードとして書き込む
bcompiler_write_function(${1:$filehandle}, ${2:$functionName})
snippet bcompiler_write_functions_from_file
abbr ファイル内で定義されているすべての関数をバイトコードとして書き込む
bcompiler_write_functions_from_file(${1:$filehandle}, ${2:$fileName})
snippet bcompiler_write_header
abbr bcompiler のヘッダを書き込む
bcompiler_write_header(${1:$filehandle}, ${2:$write_ver})
snippet bcompiler_write_included_filename
abbr インクルードされたファイルをバイトコードとして書き込む
bcompiler_write_included_filename(${1:$filehandle}, ${2:$filename})
snippet bcpow
abbr 任意精度数値をべき乗する
bcpow(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bcpowmod
abbr 任意精度数値のべき乗の、指定した数値による剰余
bcpowmod(${1:$left_operand}, ${2:$right_operand}, ${3:$modulus}, ${4:$scale})
snippet bcscale
abbr すべての BC 演算関数におけるデフォルトのスケールを設定する
bcscale(${1:$scale})
snippet bcsqrt
abbr 任意精度数値の平方根を取得する
bcsqrt(${1:$operand}, ${2:$scale})
snippet bcsub
abbr 任意精度数値の減算を行う
bcsub(${1:$left_operand}, ${2:$right_operand}, ${3:$scale})
snippet bin2hex
abbr バイナリのデータを16進表現に変換する
bin2hex(${1:$str})
snippet bind_textdomain_codeset
abbr DOMAIN メッセージカタログから返されるメッセージの文字エンコーディングを指定する
bind_textdomain_codeset(${1:$domain}, ${2:$codeset})
snippet bindec
abbr 2 進数 を 10 進数に変換する
bindec(${1:$binary_string})
snippet bindtextdomain
abbr ドメインのパスを設定する
bindtextdomain(${1:$domain}, ${2:$directory})
snippet blenc_encrypt
abbr Encrypt a PHP script with BLENC.
blenc_encrypt(${1:$plaintext}, ${2:$encodedfile}, ${3:$encryption_key})
snippet boolval
abbr 変数の boolean としての値を取得する
boolval(${1:$var})
snippet bson_decode
abbr BSON オブジェクトを PHP の配列に復元する
bson_decode(${1:$bson})
snippet bson_encode
abbr PHP の変数を BSON 文字列に変換する
bson_encode(${1:$anything})
snippet bzclose
abbr bzip2 ファイルを閉じる
bzclose(${1:$bz})
snippet bzcompress
abbr 文字列をbzip2形式のデータに圧縮する
bzcompress(${1:$source}, ${2:$blocksize}, ${3:$workfactor})
snippet bzdecompress
abbr bzip2 形式のデータを解凍する
bzdecompress(${1:$source}, ${2:$small})
snippet bzerrno
abbr bzip2 エラー番号を返す
bzerrno(${1:$bz})
snippet bzerror
abbr bzip2 エラー番号とエラー文字列を配列で返す
bzerror(${1:$bz})
snippet bzerrstr
abbr bzip2 エラー文字列を返す
bzerrstr(${1:$bz})
snippet bzflush
abbr 全てのバッファリングされたデータを強制的に書き込む
bzflush(${1:$bz})
snippet bzopen
abbr bzip2 圧縮されたファイルをオープンする
bzopen(${1:$filename}, ${2:$mode})
snippet bzread
abbr バイナリ対応の bzip2 ファイル読み込み
bzread(${1:$bz}, ${2:$length})
snippet bzwrite
abbr バイナリ対応の bzip2 ファイルへの書き込み
bzwrite(${1:$bz}, ${2:$data}, ${3:$length})
snippet cairo_create
abbr Returns a new CairoContext object on the requested surface.
cairo_create(${1:$surface})
snippet cairo_font_face_get_type
abbr Description
cairo_font_face_get_type(${1:$fontface})
snippet cairo_font_face_status
abbr Description
cairo_font_face_status(${1:$fontface})
snippet cairo_font_options_create
abbr Description
cairo_font_options_create()
snippet cairo_font_options_equal
abbr Description
cairo_font_options_equal(${1:$options}, ${2:$other})
snippet cairo_font_options_get_antialias
abbr Description
cairo_font_options_get_antialias(${1:$options})
snippet cairo_font_options_get_hint_metrics
abbr Description
cairo_font_options_get_hint_metrics(${1:$options})
snippet cairo_font_options_get_hint_style
abbr Description
cairo_font_options_get_hint_style(${1:$options})
snippet cairo_font_options_get_subpixel_order
abbr Description
cairo_font_options_get_subpixel_order(${1:$options})
snippet cairo_font_options_hash
abbr Description
cairo_font_options_hash(${1:$options})
snippet cairo_font_options_merge
abbr Description
cairo_font_options_merge(${1:$options}, ${2:$other})
snippet cairo_font_options_set_antialias
abbr Description
cairo_font_options_set_antialias(${1:$options}, ${2:$antialias})
snippet cairo_font_options_set_hint_metrics
abbr Description
cairo_font_options_set_hint_metrics(${1:$options}, ${2:$hint_metrics})
snippet cairo_font_options_set_hint_style
abbr Description
cairo_font_options_set_hint_style(${1:$options}, ${2:$hint_style})
snippet cairo_font_options_set_subpixel_order
abbr Description
cairo_font_options_set_subpixel_order(${1:$options}, ${2:$subpixel_order})
snippet cairo_font_options_status
abbr Description
cairo_font_options_status(${1:$options})
snippet cairo_format_stride_for_width
abbr Description
cairo_format_stride_for_width(${1:$format}, ${2:$width})
snippet cairo_image_surface_create_for_data
abbr Description
cairo_image_surface_create_for_data(${1:$data}, ${2:$format}, ${3:$width}, ${4:$height}, ${5:$stride})
snippet cairo_image_surface_create_from_png
abbr Description
cairo_image_surface_create_from_png(${1:$file})
snippet cairo_image_surface_create
abbr Description
cairo_image_surface_create(${1:$format}, ${2:$width}, ${3:$height})
snippet cairo_image_surface_get_data
abbr Description
cairo_image_surface_get_data(${1:$surface})
snippet cairo_image_surface_get_format
abbr Description
cairo_image_surface_get_format(${1:$surface})
snippet cairo_image_surface_get_height
abbr Description
cairo_image_surface_get_height(${1:$surface})
snippet cairo_image_surface_get_stride
abbr Description
cairo_image_surface_get_stride(${1:$surface})
snippet cairo_image_surface_get_width
abbr Description
cairo_image_surface_get_width(${1:$surface})
snippet cairo_matrix_create_scale
abbr のエイリアス CairoMatrix::initScale()
cairo_matrix_create_scale()
snippet cairo_matrix_create_translate
abbr のエイリアス CairoMatrix::initTranslate()
cairo_matrix_create_translate()
snippet cairo_matrix_invert
abbr Description
cairo_matrix_invert(${1:$matrix})
snippet cairo_matrix_multiply
abbr Description
cairo_matrix_multiply(${1:$matrix1}, ${2:$matrix2})
snippet cairo_matrix_rotate
abbr Description
cairo_matrix_rotate(${1:$matrix}, ${2:$radians})
snippet cairo_matrix_transform_distance
abbr Description
cairo_matrix_transform_distance(${1:$matrix}, ${2:$dx}, ${3:$dy})
snippet cairo_matrix_transform_point
abbr Description
cairo_matrix_transform_point(${1:$matrix}, ${2:$dx}, ${3:$dy})
snippet cairo_matrix_translate
abbr Description
cairo_matrix_translate(${1:$matrix}, ${2:$tx}, ${3:$ty})
snippet cairo_pattern_add_color_stop_rgb
abbr Description
cairo_pattern_add_color_stop_rgb(${1:$pattern}, ${2:$offset}, ${3:$red}, ${4:$green}, ${5:$blue})
snippet cairo_pattern_add_color_stop_rgba
abbr Description
cairo_pattern_add_color_stop_rgba(${1:$pattern}, ${2:$offset}, ${3:$red}, ${4:$green}, ${5:$blue}, ${6:$alpha})
snippet cairo_pattern_create_for_surface
abbr Description
cairo_pattern_create_for_surface(${1:$surface})
snippet cairo_pattern_create_linear
abbr Description
cairo_pattern_create_linear(${1:$x0}, ${2:$y0}, ${3:$x1}, ${4:$y1})
snippet cairo_pattern_create_radial
abbr Description
cairo_pattern_create_radial(${1:$x0}, ${2:$y0}, ${3:$r0}, ${4:$x1}, ${5:$y1}, ${6:$r1})
snippet cairo_pattern_create_rgb
abbr Description
cairo_pattern_create_rgb(${1:$red}, ${2:$green}, ${3:$blue})
snippet cairo_pattern_create_rgba
abbr Description
cairo_pattern_create_rgba(${1:$red}, ${2:$green}, ${3:$blue}, ${4:$alpha})
snippet cairo_pattern_get_color_stop_count
abbr Description
cairo_pattern_get_color_stop_count(${1:$pattern})
snippet cairo_pattern_get_color_stop_rgba
abbr Description
cairo_pattern_get_color_stop_rgba(${1:$pattern}, ${2:$index})
snippet cairo_pattern_get_extend
abbr Description
cairo_pattern_get_extend(${1:$pattern})
snippet cairo_pattern_get_filter
abbr Description
cairo_pattern_get_filter(${1:$pattern})
snippet cairo_pattern_get_linear_points
abbr Description
cairo_pattern_get_linear_points(${1:$pattern})
snippet cairo_pattern_get_matrix
abbr Description
cairo_pattern_get_matrix(${1:$pattern})
snippet cairo_pattern_get_radial_circles
abbr Description
cairo_pattern_get_radial_circles(${1:$pattern})
snippet cairo_pattern_get_rgba
abbr Description
cairo_pattern_get_rgba(${1:$pattern})
snippet cairo_pattern_get_surface
abbr Description
cairo_pattern_get_surface(${1:$pattern})
snippet cairo_pattern_get_type
abbr Description
cairo_pattern_get_type(${1:$pattern})
snippet cairo_pattern_set_extend
abbr Description
cairo_pattern_set_extend(${1:$pattern}, ${2:$extend})
snippet cairo_pattern_set_filter
abbr Description
cairo_pattern_set_filter(${1:$pattern}, ${2:$filter})
snippet cairo_pattern_set_matrix
abbr Description
cairo_pattern_set_matrix(${1:$pattern}, ${2:$matrix})
snippet cairo_pattern_status
abbr Description
cairo_pattern_status(${1:$pattern})
snippet cairo_pdf_surface_create
abbr Description
cairo_pdf_surface_create(${1:$file}, ${2:$width}, ${3:$height})
snippet cairo_pdf_surface_set_size
abbr Description
cairo_pdf_surface_set_size(${1:$surface}, ${2:$width}, ${3:$height})
snippet cairo_ps_get_levels
abbr Description
cairo_ps_get_levels()
snippet cairo_ps_level_to_string
abbr Description
cairo_ps_level_to_string(${1:$level})
snippet cairo_ps_surface_create
abbr Description
cairo_ps_surface_create(${1:$file}, ${2:$width}, ${3:$height})
snippet cairo_ps_surface_dsc_begin_page_setup
abbr Description
cairo_ps_surface_dsc_begin_page_setup(${1:$surface})
snippet cairo_ps_surface_dsc_begin_setup
abbr Description
cairo_ps_surface_dsc_begin_setup(${1:$surface})
snippet cairo_ps_surface_dsc_comment
abbr Description
cairo_ps_surface_dsc_comment(${1:$surface}, ${2:$comment})
snippet cairo_ps_surface_get_eps
abbr Description
cairo_ps_surface_get_eps(${1:$surface})
snippet cairo_ps_surface_restrict_to_level
abbr Description
cairo_ps_surface_restrict_to_level(${1:$surface}, ${2:$level})
snippet cairo_ps_surface_set_eps
abbr Description
cairo_ps_surface_set_eps(${1:$surface}, ${2:$level})
snippet cairo_ps_surface_set_size
abbr Description
cairo_ps_surface_set_size(${1:$surface}, ${2:$width}, ${3:$height})
snippet cairo_scaled_font_create
abbr Description
cairo_scaled_font_create(${1:$fontface}, ${2:$matrix}, ${3:$ctm}, ${4:$fontoptions})
snippet cairo_scaled_font_extents
abbr Description
cairo_scaled_font_extents(${1:$scaledfont})
snippet cairo_scaled_font_get_ctm
abbr Description
cairo_scaled_font_get_ctm(${1:$scaledfont})
snippet cairo_scaled_font_get_font_face
abbr Description
cairo_scaled_font_get_font_face(${1:$scaledfont})
snippet cairo_scaled_font_get_font_matrix
abbr Description
cairo_scaled_font_get_font_matrix(${1:$scaledfont})
snippet cairo_scaled_font_get_font_options
abbr Description
cairo_scaled_font_get_font_options(${1:$scaledfont})
snippet cairo_scaled_font_get_scale_matrix
abbr Description
cairo_scaled_font_get_scale_matrix(${1:$scaledfont})
snippet cairo_scaled_font_get_type
abbr Description
cairo_scaled_font_get_type(${1:$scaledfont})
snippet cairo_scaled_font_glyph_extents
abbr Description
cairo_scaled_font_glyph_extents(${1:$scaledfont}, ${2:$glyphs})
snippet cairo_scaled_font_status
abbr Description
cairo_scaled_font_status(${1:$scaledfont})
snippet cairo_scaled_font_text_extents
abbr Description
cairo_scaled_font_text_extents(${1:$scaledfont}, ${2:$text})
snippet cairo_surface_copy_page
abbr Description
cairo_surface_copy_page(${1:$surface})
snippet cairo_surface_create_similar
abbr Description
cairo_surface_create_similar(${1:$surface}, ${2:$content}, ${3:$width}, ${4:$height})
snippet cairo_surface_finish
abbr Description
cairo_surface_finish(${1:$surface})