-
Notifications
You must be signed in to change notification settings - Fork 50
/
ja.txt
3253 lines (3253 loc) · 408 KB
/
ja.txt
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
APCIterator%object APCIterator(string $cache, [mixed $search = null], [int $format = APC_ITER_ALL], [int $chunk_size = 100], [int $list = APC_LIST_ACTIVE])%APCIterator イテレータオブジェクトを作成する
APCUIterator%object APCUIterator([mixed $search = null], [int $format = APC_ITER_ALL], [int $chunk_size = 100], [int $list = APC_LIST_ACTIVE])%Constructs an APCUIterator iterator object
AppendIterator%object AppendIterator()%AppendIterator を作成する
ArrayIterator%object ArrayIterator([mixed $array = array()], [int $flags])%ArrayIterator を作成する
ArrayObject%object ArrayObject([mixed $input = []], [int $flags], [string $iterator_class = "ArrayIterator"])%新規配列オブジェクトを生成する
BadFunctionCallException%object BadFunctionCallException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new BadFunctionCallException
BadMethodCallException%object BadMethodCallException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new BadMethodCallException
CURLFile%object CURLFile(string $filename, [string $mimetype], [string $postname])%CURLFile オブジェクトを作る
CachingIterator%object CachingIterator(Iterator $iterator, [int $flags = self::CALL_TOSTRING])%新しい CachingIterator オブジェクトを作成する
CallbackFilterIterator%object CallbackFilterIterator(Iterator $iterator, callable $callback)%フィルタリングしたイテレータを別のイテレータから作成する
Collator%object Collator(string $locale)%collator を作成する
DOMAttr%object DOMAttr(string $name, [string $value])%新しい DOMAttr オブジェクトを作成する
DOMCdataSection%object DOMCdataSection(string $value)%新しい DOMCdataSection オブジェクトを作成する
DOMComment%object DOMComment([string $value])%新しい DOMComment オブジェクトを作成する
DOMDocument%object DOMDocument([string $version], [string $encoding])%新しい DOMDocument オブジェクトを作成する
DOMElement%object DOMElement(string $name, [string $value], [string $namespaceURI])%新しい DOMElement オブジェクトを作成する
DOMEntityReference%object DOMEntityReference(string $name)%新しい DOMEntityReference オブジェクトを作成する
DOMImplementation%object DOMImplementation()%新しい DOMImplementation オブジェクトを作成する
DOMProcessingInstruction%object DOMProcessingInstruction(string $name, [string $value])%新しい DOMProcessingInstruction オブジェクトを作成する
DOMText%object DOMText([string $value])%新しい DOMText オブジェクトを作成する
DOMXPath%object DOMXPath(DOMDocument $doc)%新しい DOMXPath オブジェクトを作成する
DateInterval%object DateInterval(string $interval_spec)%新しい DateInterval オブジェクトを作成する
DatePeriod%object DatePeriod(DateTimeInterface $start, DateInterval $interval, int $recurrences, [int $options], DateTimeInterface $end, string $isostr)%新しい DatePeriod オブジェクトを作成する
DateTime%object DateTime([string $time = "now"], [DateTimeZone $timezone])%新しい DateTime オブジェクトを返す
DateTimeImmutable%object DateTimeImmutable([string $time = "now"], [DateTimeZone $timezone])%新しい DateTimeImmutable オブジェクトを返す
DateTimeZone%object DateTimeZone(string $timezone)%新しい DateTimeZone オブジェクトを作成する
DirectoryIterator%object DirectoryIterator(string $path)%パスから新規ディレクトリイテレータを生成する
DomainException%object DomainException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new DomainException
Ds\Deque%object Ds\Deque([mixed $values])%Creates a new instance.
Ds\Map%object Ds\Map([mixed $...values])%Creates a new instance.
Ds\Pair%object Ds\Pair([mixed $key], [mixed $value])%Creates a new instance.
Ds\PriorityQueue%object Ds\PriorityQueue()%Creates a new instance.
Ds\Queue%object Ds\Queue([mixed $values])%Creates a new instance.
Ds\Set%object Ds\Set([mixed $...values])%Creates a new instance.
Ds\Stack%object Ds\Stack([mixed $values])%Creates a new instance.
Ds\Vector%object Ds\Vector([mixed $values])%Creates a new instance.
ErrorException%object ErrorException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new ErrorException
EvCheck%object EvCheck(callable $callback, [mixed $data], [int $priority])%EvCheck ウォッチャーオブジェクトを作る
EvChild%object EvChild(int $pid, bool $trace, callable $callback, [mixed $data], [int $priority])%EvChild ウォッチャーオブジェクトを作る
EvEmbed%object EvEmbed(object $other, [callable $callback], [mixed $data], [int $priority])%EvEmbed オブジェクトを作る
EvFork%object EvFork(callable $callback, [mixed $data], [int $priority])%EvFork ウォッチャーオブジェクトを作る
EvIdle%object EvIdle(callable $callback, [mixed $data], [int $priority])%Constructs the EvIdle watcher object
EvIo%object EvIo(mixed $fd, int $events, callable $callback, [mixed $data], [int $priority])%Constructs EvIo watcher object
EvLoop%object EvLoop([int $flags], [mixed $data = NULL], [double $io_interval = 0.0], [double $timeout_interval = 0.0])%Constructs the event loop object
EvPeriodic%object EvPeriodic(double $offset, string $interval, callable $reschedule_cb, callable $callback, [mixed $data], [int $priority])%Constructs EvPeriodic watcher object
EvPrepare%object EvPrepare(string $callback, [string $data], [string $priority])%EvPrepare ウォッチャーオブジェクトを作る
EvSignal%object EvSignal(int $signum, callable $callback, [mixed $data], [int $priority])%Constructs EvPeriodic watcher object
EvStat%object EvStat(string $path, double $interval, callable $callback, [mixed $data], [int $priority])%Constructs EvStat watcher object
EvTimer%object EvTimer(double $after, double $repeat, callable $callback, [mixed $data], [int $priority])%Constructs an EvTimer watcher object
EvWatcher%object EvWatcher()%Abstract constructor of a watcher object
Event%object Event(EventBase $base, mixed $fd, int $what, callable $cb, [mixed $arg = NULL])%Constructs Event object
EventBase%object EventBase([EventConfig $cfg])%Constructs EventBase object
EventBuffer%object EventBuffer()%Constructs EventBuffer object
EventBufferEvent%object EventBufferEvent(EventBase $base, [mixed $socket], [int $options], [callable $readcb], [callable $writecb], [callable $eventcb])%Constructs EventBufferEvent object
EventConfig%object EventConfig()%Constructs EventConfig object
EventDnsBase%object EventDnsBase(EventBase $base, bool $initialize)%Constructs EventDnsBase object
EventHttp%object EventHttp(EventBase $base, [EventSslContext $ctx])%Constructs EventHttp object(the HTTP server)
EventHttpConnection%object EventHttpConnection(EventBase $base, EventDnsBase $dns_base, string $address, int $port, [EventSslContext $ctx])%Constructs EventHttpConnection object
EventHttpRequest%object EventHttpRequest(callable $callback, [mixed $data])%Constructs EventHttpRequest object
EventListener%object EventListener(EventBase $base, callable $cb, mixed $data, int $flags, int $backlog, mixed $target)%Creates new connection listener associated with an event base
EventSslContext%object EventSslContext(string $method, string $options)%Constructs an OpenSSL context for use with Event classes
EventUtil%object EventUtil()%The abstract constructor
Exception%object Exception([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new Exception
FANNConnection%object FANNConnection(int $from_neuron, int $to_neuron, float $weight)%The connection constructor
FilesystemIterator%object FilesystemIterator(string $path, [int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS])%新しい filesystem イテレータを作成する
FilterIterator%object FilterIterator(Iterator $iterator)%filterIterator を作成する
Gender\Gender%object Gender\Gender([string $dsn])%Gender オブジェクトを作る
GlobIterator%object GlobIterator(string $path, [int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO])%glob を使うディレクトリを作成する
Gmagick%object Gmagick([string $filename])%Gmagick のコンストラクタ
GmagickPixel%object GmagickPixel([string $color])%GmagickPixel のコンストラクタ
HaruDoc%object HaruDoc()%新しい HaruDoc のインスタンスを作成する
Imagick%object Imagick(mixed $files)%Imagick のコンストラクタ
ImagickDraw%object ImagickDraw()%ImagickDraw コンストラクタ
ImagickPixel%object ImagickPixel([string $color])%ImagickPixel のコンストラクタ
ImagickPixelIterator%object ImagickPixelIterator(Imagick $wand)%ImagickPixelIterator のコンストラクタ
InfiniteIterator%object InfiniteIterator(Iterator $iterator)%InfiniteIterator を作成する
IntlBreakIterator%object IntlBreakIterator()%インスタンス化をできないようにするための private なコンストラクタ
IntlCalendar%object IntlCalendar()%Private constructor for disallowing instantiation
IntlRuleBasedBreakIterator%object IntlRuleBasedBreakIterator(string $rules, [string $areCompiled])%Create iterator from ruleset
InvalidArgumentException%object InvalidArgumentException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new InvalidArgumentException
IteratorIterator%object IteratorIterator(Traversable $iterator)%traversable な何かからイテレータを作成する
KTaglib_MPEG_File%object KTaglib_MPEG_File(string $filename)%新しいファイルをオープンする
LengthException%object LengthException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new LengthException
LimitIterator%object LimitIterator(Iterator $iterator, [int $offset], [int $count = -1])%LimitIterator を作成する
LogicException%object LogicException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new LogicException
Lua%object Lua(string $lua_script_file)%Lua コンストラクタ
Memcached%object Memcached([string $persistent_id])%Memcached のインスタンスを作成する
Mongo%object Mongo([string $server], [array $options])%コンストラクタ
MongoBinData%object MongoBinData(string $data, [int $type])%新しいバイナリデータオブジェクトを作成する
MongoCode%object MongoCode(string $code, [array $scope = array()])%新しいコードオブジェクトを作成する
MongoCollection%object MongoCollection(MongoDB $db, string $name)%新しいコレクションを作成する
MongoCommandCursor%object MongoCommandCursor(MongoClient $connection, string $ns, array $command)%Create a new command cursor
MongoCursor%object MongoCursor(MongoClient $connection, string $ns, [array $query = array()], [array $fields = array()])%新しいカーソルを作成する
MongoDB%object MongoDB(MongoClient $conn, string $name)%新しいデータベースを作成する
MongoDB\BSON\Binary%object MongoDB\BSON\Binary(string $data, integer $type)%Construct a new Binary
MongoDB\BSON\Decimal128%object MongoDB\BSON\Decimal128([string $value])%Construct a new Decimal128
MongoDB\BSON\Javascript%object MongoDB\BSON\Javascript(string $code, [array|object $scope])%Construct a new Javascript
MongoDB\BSON\MaxKey%object MongoDB\BSON\MaxKey()%Construct a new MaxKey
MongoDB\BSON\MinKey%object MongoDB\BSON\MinKey()%Construct a new MinKey
MongoDB\BSON\ObjectID%object MongoDB\BSON\ObjectID([string $id])%Construct a new ObjectID
MongoDB\BSON\Regex%object MongoDB\BSON\Regex(string $pattern, [string $flags = ""])%Construct a new Regex
MongoDB\BSON\Timestamp%object MongoDB\BSON\Timestamp(integer $increment, integer $timestamp)%Construct a new Timestamp
MongoDB\BSON\UTCDateTime%object MongoDB\BSON\UTCDateTime([integer|float|string|DateTimeInterface $milliseconds])%Construct a new UTCDateTime
MongoDB\BSON\fromJSON%string MongoDB\BSON\fromJSON(string $json)%Returns the BSON representation of a JSON value
MongoDB\BSON\fromPHP%string MongoDB\BSON\fromPHP(array|object $value)%Returns the BSON representation of a PHP value
MongoDB\BSON\toJSON%string MongoDB\BSON\toJSON(string $bson)%Returns the JSON representation of a BSON value
MongoDB\BSON\toPHP%array|object MongoDB\BSON\toPHP(string $bson, [array $typeMap = []])%Returns the PHP representation of a BSON value
MongoDB\Driver\BulkWrite%object MongoDB\Driver\BulkWrite([array $options])%Create a new BulkWrite
MongoDB\Driver\Command%object MongoDB\Driver\Command(array|object $document)%Create a new Command
MongoDB\Driver\Cursor%object MongoDB\Driver\Cursor()%Create a new Cursor (not used)
MongoDB\Driver\CursorId%object MongoDB\Driver\CursorId()%Create a new CursorId (not used)
MongoDB\Driver\Manager%object MongoDB\Driver\Manager([string $uri = "mongodb://127.0.0.1/], [array $uriOptions = []], [array $driverOptions = []])%Create new MongoDB Manager
MongoDB\Driver\Query%object MongoDB\Driver\Query(array|object $filter, [array $queryOptions])%Construct new Query
MongoDB\Driver\ReadConcern%object MongoDB\Driver\ReadConcern([string $level])%Construct immutable ReadConcern
MongoDB\Driver\ReadPreference%object MongoDB\Driver\ReadPreference(int $mode, [array $tagSets], [array $options = []])%Construct immutable ReadPreference
MongoDB\Driver\Server%object MongoDB\Driver\Server()%Create a new Server (not used)
MongoDB\Driver\WriteConcern%object MongoDB\Driver\WriteConcern(string|int $w, [integer $wtimeout], [boolean $journal])%Construct immutable WriteConcern
MongoDate%object MongoDate([int $sec = time()], [int $usec])%新しい日付を作成する
MongoDeleteBatch%object MongoDeleteBatch(MongoCollection $collection, [array $write_options])%Description
MongoGridFS%object MongoGridFS(MongoDB $db, [string $prefix = "fs"], [mixed $chunks = "fs"])%新しいファイルコレクションを作成する
MongoGridFSCursor%object MongoGridFSCursor(MongoGridFS $gridfs, resource $connection, string $ns, array $query, array $fields)%新しいカーソルを作成する
MongoGridfsFile%object MongoGridfsFile(MongoGridFS $gridfs, array $file)%新しい GridFS ファイルを作成する
MongoId%object MongoId([string|MongoId $id])%新しい ID を作成する
MongoInsertBatch%object MongoInsertBatch(MongoCollection $collection, [array $write_options])%Description
MongoInt32%object MongoInt32(string $value)%新しい 32 ビット整数値を作成する
MongoInt64%object MongoInt64(string $value)%新しい 64 ビット整数値を作成する
MongoRegex%object MongoRegex(string $regex)%新しい正規表現を作成する
MongoTimestamp%object MongoTimestamp([int $sec = time()], [int $inc])%新しいタイムスタンプを作成する
MongoUpdateBatch%object MongoUpdateBatch(MongoCollection $collection, [array $write_options])%Description
MongoWriteBatch%object MongoWriteBatch(MongoCollection $collection, [string $batch_type], [array $write_options])%Creates a new batch of write operations
MultipleIterator%object MultipleIterator([int $flags = MultipleIterator::MIT_NEED_ALL|MultipleIterator::MIT_KEYS_NUMERIC])%新しい MultipleIterator を作成する
MysqlndUhConnection%object MysqlndUhConnection()%The __construct purpose
MysqlndUhPreparedStatement%object MysqlndUhPreparedStatement()%The __construct purpose
NoRewindIterator%object NoRewindIterator(Iterator $iterator)%NoRewindIterator を作成する
OutOfBoundsException%object OutOfBoundsException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new OutOfBoundsException
OutOfRangeException%object OutOfRangeException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new OutOfRangeException
OverflowException%object OverflowException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new OverflowException
PDO%object PDO(string $dsn, [string $username], [string $password], [array $options])%データベースへの接続を表す PDO インスタンスを生成する
ParentIterator%object ParentIterator(RecursiveIterator $iterator)%ParentIterator を作成する
Phar%object Phar(string $fname, [int $flags], [string $alias])%Phar アーカイブオブジェクトを作成する
PharData%object PharData(string $fname, [int $flags], [string $alias], [int $format])%実行可能でない tar あるいは zip アーカイブオブジェクトを作成する
PharFileInfo%object PharFileInfo(string $entry)%Phar エントリオブジェクトを作成する
Pool%object Pool(integer $size, [string $class], [array $ctor])%Creates a new Pool of Workers
QuickHashIntHash%object QuickHashIntHash(int $size, [int $options])%新しい QuickHashIntHash オブジェクトを作る
QuickHashIntSet%object QuickHashIntSet(int $size, [int $options])%新しい QuickHashIntSet オブジェクトを作る
QuickHashIntStringHash%object QuickHashIntStringHash(int $size, [int $options])%新しい QuickHashIntStringHash オブジェクトを作る
QuickHashStringIntHash%object QuickHashStringIntHash(int $size, [int $options])%新しい QuickHashStringIntHash オブジェクトを作る
RRDCreator%object RRDCreator(string $path, [string $startTime], [int $step])%Creates new RRDCreator instance
RRDGraph%object RRDGraph(string $path)%Creates new RRDGraph instance
RRDUpdater%object RRDUpdater(string $path)%Creates new RRDUpdater instance
RangeException%object RangeException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new RangeException
RecursiveCachingIterator%object RecursiveCachingIterator(Iterator $iterator, [string $flags = self::CALL_TOSTRING])%コンストラクタ
RecursiveCallbackFilterIterator%object RecursiveCallbackFilterIterator(RecursiveIterator $iterator, string $callback)%RecursiveIterator から RecursiveCallbackFilterIterator を作成する
RecursiveDirectoryIterator%object RecursiveDirectoryIterator(string $path, [int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO])%RecursiveDirectoryIterator を作成する
RecursiveFilterIterator%object RecursiveFilterIterator(RecursiveIterator $iterator)%RecursiveIterator から RecursiveFilterIterator を作成する
RecursiveIteratorIterator%object RecursiveIteratorIterator(Traversable $iterator, [int $mode = RecursiveIteratorIterator::LEAVES_ONLY], [int $flags])%RecursiveIteratorIterator を作成する
RecursiveRegexIterator%object RecursiveRegexIterator(RecursiveIterator $iterator, string $regex, [int $mode = self::MATCH], [int $flags], [int $preg_flags])%新しい RecursiveRegexIterator を作成する
RecursiveTreeIterator%object RecursiveTreeIterator(RecursiveIterator|IteratorAggregate $it, [int $flags = RecursiveTreeIterator::BYPASS_KEY], [int $cit_flags = CachingIterator::CATCH_GET_CHILD], [int $mode = RecursiveIteratorIterator::SELF_FIRST])%RecursiveTreeIterator を作成する
ReflectionClass%object ReflectionClass(mixed $argument)%ReflectionClass を作成する
ReflectionExtension%object ReflectionExtension(string $name)%ReflectionExtension を作成する
ReflectionFunction%object ReflectionFunction(mixed $name)%ReflectionFunction オブジェクトを作成する
ReflectionGenerator%object ReflectionGenerator(Generator $generator)%Constructs a ReflectionGenerator object
ReflectionMethod%object ReflectionMethod(mixed $class, string $name, string $class_method)%ReflectionMethod を作成する
ReflectionObject%object ReflectionObject(object $argument)%ReflectionObject を作成する
ReflectionParameter%object ReflectionParameter(string $function, string $parameter)%コンストラクタ
ReflectionProperty%object ReflectionProperty(mixed $class, string $name)%ReflectionProperty オブジェクトを作成する
ReflectionZendExtension%object ReflectionZendExtension(string $name)%コンストラクタ
RegexIterator%object RegexIterator(Iterator $iterator, string $regex, [int $mode = self::MATCH], [int $flags], [int $preg_flags])%新しい RegexIterator を作成する
RuntimeException%object RuntimeException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new RuntimeException
SAMConnection%object SAMConnection()%メッセージングサーバーへの新しい接続を作成する
SAMMessage%object SAMMessage([mixed $body])%新しいメッセージオブジェクトを作成する
SDO_DAS_Relational%object SDO_DAS_Relational(array $database_metadata, [string $application_root_type], [array $SDO_containment_references_metadata])%リレーショナルデータアクセスサービスのインスタンスを作成する
SDO_Model_ReflectionDataObject%object SDO_Model_ReflectionDataObject(SDO_DataObject $data_object)%SDO_Model_ReflectionDataObject を作成する
SNMP%object SNMP(int $version, string $hostname, string $community, [int $timeout = 1000000], [int $retries = 5])%リモート SNMP エージェントへのセッションを表す SNMP インスタンスを作成する
SQLite3%object SQLite3(string $filename, [int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE], [string $encryption_key = null])%SQLite3 オブジェクトを作成し、SQLite 3 データベースをオープンする
SVM%object SVM()%SVM オブジェクトを新規構築
SVMModel%object SVMModel([string $filename])%SVMModel を新規構築
SimpleXMLElement%object SimpleXMLElement(string $data, [int $options], [bool $data_is_url = false], [string $ns = ""], [bool $is_prefix = false])%新しい SimpleXMLElement オブジェクトを作成する
SoapClient%object SoapClient(mixed $wsdl, [array $options])%SoapClient のコンストラクタ
SoapFault%object SoapFault(string $faultcode, string $faultstring, [string $faultactor], [string $detail], [string $faultname], [string $headerfault])%SoapFault コンストラクタ
SoapHeader%object SoapHeader(string $namespace, string $name, [mixed $data], [bool $mustunderstand], [string $actor])%SoapHeader コンストラクタ
SoapParam%object SoapParam(mixed $data, string $name)%SoapParam コンストラクタ
SoapServer%object SoapServer(mixed $wsdl, [array $options])%SoapServer コンストラクタ
SoapVar%object SoapVar(mixed $data, string $encoding, [string $type_name], [string $type_namespace], [string $node_name], [string $node_namespace])%SoapVar コンストラクタ
SphinxClient%object SphinxClient()%新しい SphinxClient オブジェクトを作成する
SplDoublyLinkedList%object SplDoublyLinkedList()%新しい双方向リンクリストを作成する
SplFileInfo%object SplFileInfo(string $file_name)%新しい SplFileInfo オブジェクトを作成する
SplFileObject%object SplFileObject(string $filename, [string $open_mode = "r"], [bool $use_include_path = false], [resource $context])%新しいファイルオブジェクトを作成する
SplFixedArray%object SplFixedArray([int $size])%新しい固定長配列を作成する
SplHeap%object SplHeap()%新しい空のヒープを作成する
SplPriorityQueue%object SplPriorityQueue()%新しい空のキューを作成する
SplQueue%object SplQueue()%双方向リンクリストを使用して実装した新しい空のキューを作成する
SplStack%object SplStack()%双方向リンクリストを使用して実装した新しい空のスタックを作成する
SplTempFileObject%object SplTempFileObject([int $max_memory])%新しい一時ファイルオブジェクトを作成する
SplType%object SplType([mixed $initial_value], [bool $strict])%何らかの型の新しい値を作成する
Spoofchecker%object Spoofchecker()%Constructor
Swish%object Swish(string $index_names)%Swish オブジェクトを作成する
SyncEvent%object SyncEvent([string $name], [bool $manual = false], [bool $prefire = false])%Constructs a new SyncEvent object
SyncMutex%object SyncMutex([string $name])%Constructs a new SyncMutex object
SyncReaderWriter%object SyncReaderWriter([string $name], [bool $autounlock = true])%Constructs a new SyncReaderWriter object
SyncSemaphore%object SyncSemaphore([string $name], [integer $initialval = 1], [bool $autounlock = true])%Constructs a new SyncSemaphore object
SyncSharedMemory%object SyncSharedMemory(string $name, integer $size)%Constructs a new SyncSharedMemory object
TokyoTyrant%object TokyoTyrant([string $host], [int $port = TokyoTyrant::RDBDEF_PORT], [array $options])%新しい TokyoTyrant オブジェクトを作成する
TokyoTyrantIterator%object TokyoTyrantIterator(mixed $object)%イテレータを作成する
TokyoTyrantQuery%object TokyoTyrantQuery(TokyoTyrantTable $table)%新しいクエリを作成する
Transliterator%object Transliterator()%インスタンス化を拒否するために private にしたコンストラクタ
UConverter%object UConverter([string $destination_encoding], [string $source_encoding])%UConverter オブジェクトを作る
UI\Controls\Box%object UI\Controls\Box([integer $orientation = UI\Controls\Box::Horizontal])%Construct a new Box
UI\Controls\Button%object UI\Controls\Button(string $text)%Construct a new Button
UI\Controls\Check%object UI\Controls\Check(string $text)%Construct a new Check
UI\Controls\Entry%object UI\Controls\Entry([integer $type = UI\Controls\Entry::Normal])%Construct a new Entry
UI\Controls\Group%object UI\Controls\Group(string $title)%Construct a new Group
UI\Controls\Label%object UI\Controls\Label(string $text)%Construct a new Label
UI\Controls\MultilineEntry%object UI\Controls\MultilineEntry([integer $type])%Construct a new Multiline Entry
UI\Controls\Picker%object UI\Controls\Picker([integer $type = UI\Controls\Picker::Date])%Construct a new Picker
UI\Controls\Separator%object UI\Controls\Separator([integer $type = UI\Controls\Separator::Horizontal])%Construct a new Separator
UI\Controls\Slider%object UI\Controls\Slider(integer $min, integer $max)%Construct a new Slider
UI\Controls\Spin%object UI\Controls\Spin(integer $min, integer $max)%Construct a new Spin
UI\Draw\Brush%object UI\Draw\Brush(integer $color)%Construct a new Brush
UI\Draw\Brush\LinearGradient%object UI\Draw\Brush\LinearGradient(UI\Point $start, UI\Point $end)%Construct a Linear Gradient
UI\Draw\Brush\RadialGradient%object UI\Draw\Brush\RadialGradient(UI\Point $start, UI\Point $outer, float $radius)%Construct a new Radial Gradient
UI\Draw\Color%object UI\Draw\Color([integer $color])%Construct new Color
UI\Draw\Path%object UI\Draw\Path([integer $mode = UI\Draw\Path::Winding])%Construct a new Path
UI\Draw\Stroke%object UI\Draw\Stroke([integer $cap = UI\Draw\Line\Cap::Flat], [integer $join = UI\Draw\Line\Join::Miter], [float $thickness = 1], [float $miterLimit = 10])%Construct a new Stroke
UI\Draw\Text\Font%object UI\Draw\Text\Font(UI\Draw\Text\Font\Descriptor $descriptor)%Construct a new Font
UI\Draw\Text\Font\Descriptor%object UI\Draw\Text\Font\Descriptor(string $family, float $size, [integer $weight = UI\Draw\Text\Font\Weight::Normal], [integer $italic = UI\Draw\Text\Font\Italic::Normal], [integer $stretch = UI\Draw\Text\Font\Stretch::Normal])%Construct a new Font Descriptor
UI\Draw\Text\Font\fontFamilies%array UI\Draw\Text\Font\fontFamilies()%Retrieve Font Families
UI\Draw\Text\Layout%object UI\Draw\Text\Layout(string $text, UI\Draw\Text\Font $font, float $width)%Construct a new Text Layout
UI\Executor%object UI\Executor(integer $microseconds, integer $seconds)%Construct a new Executor
UI\Menu%object UI\Menu(string $name)%Construct a new Menu
UI\Point%object UI\Point(float $x, float $y)%Construct a new Point
UI\Size%object UI\Size(float $width, float $height)%Construct a new Size
UI\Window%object UI\Window(string $title, Size $size, [boolean $menu = false])%Construct a new Window
UI\quit%void UI\quit()%Quit UI Loop
UI\run%void UI\run([integer $flags])%Enter UI Loop
UnderflowException%object UnderflowException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new UnderflowException
UnexpectedValueException%object UnexpectedValueException([string $message = ""], [int $code = 0], [Exception $previous = NULL])%Create a new UnexpectedValueException
V8Js%object V8Js([string $object_name = "PHP"], [array $variables = array()], [array $extensions = array()], [bool $report_uncaught_exceptions])%新しい V8Js オブジェクトを作成する
VarnishAdmin%object VarnishAdmin([array $args])%VarnishAdmin のコンストラクタ
VarnishLog%object VarnishLog([array $args])%Varnishlog のコンストラクタ
VarnishStat%object VarnishStat([array $args])%VarnishStat のコンストラクタ
WeakMap%object WeakMap()%新しいマップを作る
Weakref%object Weakref(object $object)%弱い参照を新しく作る
XMLDiff\Base%object XMLDiff\Base(string $nsname)%Constructor
XSLTProcessor%object XSLTProcessor()%新規 XSLTProcessor オブジェクトを生成する
Yaf_Application%object Yaf_Application(mixed $config, [string $envrion])%Yaf_Application のコンストラクタ
Yaf_Config_Ini%object Yaf_Config_Ini(string $config_file, [string $section])%Yaf_Config_Ini のコンストラクタ
Yaf_Config_Simple%object Yaf_Config_Simple(string $config_file, [string $section])%コンストラクタ
Yaf_Controller_Abstract%object Yaf_Controller_Abstract()%Yaf_Controller_Abstract のコンストラクタ
Yaf_Dispatcher%object Yaf_Dispatcher()%Yaf_Dispatcher のコンストラクタ
Yaf_Exception%object Yaf_Exception()%コンストラクタ
Yaf_Loader%object Yaf_Loader()%The __construct purpose
Yaf_Registry%object Yaf_Registry()%Yaf_Registry はシングルトンを実装する
Yaf_Request_Http%object Yaf_Request_Http([string $request_uri], [string $base_uri])%Yaf_Request_Http のコンストラクタ
Yaf_Request_Simple%object Yaf_Request_Simple([string $method], [string $module], [string $controller], [string $action], [array $params])%Yaf_Request_Simple のコンストラクタ
Yaf_Response_Abstract%object Yaf_Response_Abstract()%The __construct purpose
Yaf_Route_Map%object Yaf_Route_Map([string $controller_prefer = false], [string $delimiter = ""])%The __construct purpose
Yaf_Route_Regex%object Yaf_Route_Regex(string $match, array $route, [array $map], [array $verify], [string $reverse])%Yaf_Route_Regex のコンストラクタ
Yaf_Route_Rewrite%object Yaf_Route_Rewrite(string $match, array $route, [array $verify])%Yaf_Route_Rewrite のコンストラクタ
Yaf_Route_Simple%object Yaf_Route_Simple(string $module_name, string $controller_name, string $action_name)%Yaf_Route_Simple のコンストラクタ
Yaf_Route_Supervar%object Yaf_Route_Supervar(string $supervar_name)%The __construct purpose
Yaf_Router%object Yaf_Router()%Yaf_Router のコンストラクタ
Yaf_Session%object Yaf_Session()%Yaf_Session のコンストラクタ
Yaf_View_Simple%object Yaf_View_Simple(string $template_dir, [array $options])%Yaf_View_Simple のコンストラクタ
Yar_Client%object Yar_Client(string $url)%Create a client
Yar_Server%object Yar_Server(Object $obj)%Register a server
ZMQ%object ZMQ()%ZMQ constructor
ZMQContext%object ZMQContext([integer $io_threads = 1], [boolean $is_persistent = true])%Construct a new ZMQContext object
ZMQDevice%object ZMQDevice(ZMQSocket $frontend, ZMQSocket $backend, [ZMQSocket $listener])%Construct a new device
ZMQSocket%object ZMQSocket(ZMQContext $context, int $type, [string $persistent_id = null], [callback $on_new_socket = null])%Construct a new ZMQSocket
Zookeeper%object Zookeeper([string $host = ''], [callable $watcher_cb = null], [int $recv_timeout = 10000])%Create a handle to used communicate with zookeeper.
__autoload%void __autoload(string $class)%未定義のクラスのロードを試みる
__halt_compiler%void __halt_compiler()%コンパイラの実行を中止する
abs%number abs(mixed $number)%絶対値
acos%float acos(float $arg)%逆余弦(アークコサイン)
acosh%float acosh(float $arg)%逆双曲線余弦(アークハイパボリックコサイン)
addcslashes%string addcslashes(string $str, string $charlist)%C 言語と同様にスラッシュで文字列をクォートする
addslashes%string addslashes(string $str)%文字列をスラッシュでクォートする
apache_child_terminate%bool apache_child_terminate()%このリクエストの後にApacheプロセスを終了する
apache_get_modules%array apache_get_modules()%ロードされた Apache モジュールのリストを取得する
apache_get_version%string apache_get_version()%Apache のバージョンを取得する
apache_getenv%string apache_getenv(string $variable, [bool $walk_to_top = false])%Apache の subprocess_env 変数を取得する
apache_lookup_uri%object apache_lookup_uri(string $filename)%リクエストの一部を指定したURIに対して行い、全ての情報を返す
apache_note%string apache_note(string $note_name, [string $note_value = ""])%Apacheリクエスト記号(note)を取得/設定する
apache_request_headers%array apache_request_headers()%すべての HTTP リクエストヘッダを取得する
apache_reset_timeout%bool apache_reset_timeout()%Apache の書き込みタイマーをリセットする
apache_response_headers%array apache_response_headers()%HTTPレスポンスヘッダを全て取得する
apache_setenv%bool apache_setenv(string $variable, string $value, [bool $walk_to_top = false])%Apacheサブプロセスの環境変数を設定する
apc_add%array apc_add(string $key, mixed $var, [int $ttl], array $values, [mixed $unused = NULL])%新規の変数をデータ領域にキャッシュする
apc_bin_dump%string apc_bin_dump([array $files = NULL], [array $user_vars = NULL])%指定したファイルおよびユーザー変数のバイナリダンプを取得する
apc_bin_dumpfile%int apc_bin_dumpfile(array $files, array $user_vars, string $filename, [int $flags], [resource $context = NULL])%キャッシュされたファイルやユーザー変数のバイナリダンプをファイルに出力する
apc_bin_load%bool apc_bin_load(string $data, [int $flags])%バイナリダンプを APC のファイル/ユーザーキャッシュに読み込む
apc_bin_loadfile%bool apc_bin_loadfile(string $filename, [resource $context = NULL], [int $flags])%バイナリダンプをファイルから APC のファイル/ユーザーキャッシュに読み込む
apc_cache_info%array apc_cache_info([string $cache_type = ""], [bool $limited = false])%APC のデータから、キャッシュされた情報を取得する
apc_cas%bool apc_cas(string $key, int $old, int $new)%古い値を新しい値に更新する
apc_clear_cache%bool apc_clear_cache([string $cache_type = ""])%APC キャッシュをクリアする
apc_compile_file%mixed apc_compile_file(string $filename, [bool $atomic = true])%ファイルをバイトコードキャッシュに保存し、すべてのフィルタをバイパスする
apc_dec%int apc_dec(string $key, [int $step = 1], [bool $success])%保存した数値を減らす
apc_define_constants%bool apc_define_constants(string $key, array $constants, [bool $case_sensitive = true])%定数の組を定義し、それを取得あるいは一括定義する
apc_delete%mixed apc_delete(string $key)%格納されている変数をキャッシュから取り除く
apc_delete_file%mixed apc_delete_file(mixed $keys)%ファイルを opcode キャッシュから削除する
apc_exists%mixed apc_exists(mixed $keys)%APC キーが存在するかどうかを調べる
apc_fetch%mixed apc_fetch(mixed $key, [bool $success])%格納されている変数をキャッシュから取得する
apc_inc%int apc_inc(string $key, [int $step = 1], [bool $success])%保存した数値を増やす
apc_load_constants%bool apc_load_constants(string $key, [bool $case_sensitive = true])%定数群をキャッシュから読み込む
apc_sma_info%array apc_sma_info([bool $limited = false])%APC の共有メモリ割り当てに関する情報を取得する
apc_store%array apc_store(string $key, mixed $var, [int $ttl], array $values, [mixed $unused = NULL])%変数をデータ領域にキャッシュする
apcu_add%array apcu_add(string $key, mixed $var, [int $ttl], array $values, [mixed $unused = NULL])%Cache a new variable in the data store
apcu_cache_info%array apcu_cache_info([bool $limited = false])%Retrieves cached information from APCu's data store
apcu_cas%bool apcu_cas(string $key, int $old, int $new)%Updates an old value with a new value
apcu_clear_cache%bool apcu_clear_cache()%Clears the APCu cache
apcu_dec%int apcu_dec(string $key, [int $step = 1], [bool $success])%Decrease a stored number
apcu_delete%bool apcu_delete(mixed $key)%Removes a stored variable from the cache
apcu_entry%mixed apcu_entry(string $key, callable $generator, [int $ttl])%Atomically fetch or generate a cache entry
apcu_exists%mixed apcu_exists(mixed $keys)%Checks if entry exists
apcu_fetch%mixed apcu_fetch(mixed $key, [bool $success])%Fetch a stored variable from the cache
apcu_inc%int apcu_inc(string $key, [int $step = 1], [bool $success])%Increase a stored number
apcu_sma_info%array apcu_sma_info([bool $limited = false])%Retrieves APCu Shared Memory Allocation information
apcu_store%array apcu_store(string $key, mixed $var, [int $ttl], array $values, [mixed $unused = NULL])%Cache a variable in the data store
array%array array([mixed ...])%配列を生成する
array_change_key_case%array array_change_key_case(array $array, [int $case = CASE_LOWER])%配列のすべてのキーの大文字小文字を変更する
array_chunk%array array_chunk(array $array, int $size, [bool $preserve_keys = false])%配列を分割する
array_column%array array_column(array $input, mixed $column_key, [mixed $index_key = null])%入力配列から単一のカラムの値を返す
array_combine%配列 array_combine(array $keys, array $values)%一方の配列をキーとして、もう一方の配列を値として、ひとつの配列を生成する
array_count_values%array array_count_values(array $array)%配列の値の数を数える
array_diff%array array_diff(array $array1, array $array2, [array ...])%配列の差を計算する
array_diff_assoc%array array_diff_assoc(array $array1, array $array2, [array ...])%追加された添字の確認を含めて配列の差を計算する
array_diff_key%array array_diff_key(array $array1, array $array2, [array ...])%キーを基準にして配列の差を計算する
array_diff_uassoc%array array_diff_uassoc(array $array1, array $array2, [array ...], callable $key_compare_func)%ユーザーが指定したコールバック関数を利用し、 追加された添字の確認を含めて配列の差を計算する
array_diff_ukey%array array_diff_ukey(array $array1, array $array2, [array ...], callable $key_compare_func)%キーを基準にし、コールバック関数を用いて配列の差を計算する
array_fill%array array_fill(int $start_index, int $num, mixed $value)%配列を指定した値で埋める
array_fill_keys%array array_fill_keys(array $keys, mixed $value)%キーを指定して、配列を値で埋める
array_filter%array array_filter(array $array, [callable $callback], [int $flag])%コールバック関数を使用して、配列の要素をフィルタリングする
array_flip%string array_flip(array $array)%配列のキーと値を反転する
array_intersect%array array_intersect(array $array1, array $array2, [array ...])%配列の共通項を計算する
array_intersect_assoc%array array_intersect_assoc(array $array1, array $array2, [array ...])%追加された添字の確認も含めて配列の共通項を確認する
array_intersect_key%array array_intersect_key(array $array1, array $array2, [array ...])%キーを基準にして配列の共通項を計算する
array_intersect_uassoc%array array_intersect_uassoc(array $array1, array $array2, [array ...], callable $key_compare_func)%追加された添字の確認も含め、コールバック関数を用いて 配列の共通項を確認する
array_intersect_ukey%array array_intersect_ukey(array $array1, array $array2, [array ...], callable $key_compare_func)%キーを基準にし、コールバック関数を用いて 配列の共通項を計算する
array_key_exists%bool array_key_exists(mixed $key, array $array)%指定したキーまたは添字が配列にあるかどうかを調べる
array_keys%array array_keys(array $array, [mixed $search_value = null], [bool $strict = false])%配列のキーすべて、あるいはその一部を返す
array_map%array array_map(callable $callback, array $array1, [array ...])%指定した配列の要素にコールバック関数を適用する
array_merge%array array_merge(array $array1, [array ...])%ひとつまたは複数の配列をマージする
array_merge_recursive%array array_merge_recursive(array $array1, [array ...])%二つ以上の配列を再帰的にマージする
array_multisort%string array_multisort(array $array1, [mixed $array1_sort_order = SORT_ASC], [mixed $array1_sort_flags = SORT_REGULAR], [mixed ...])%複数または多次元の配列をソートする
array_pad%array array_pad(array $array, int $size, mixed $value)%指定長、指定した値で配列を埋める
array_pop%mixed array_pop(array $array)%配列の末尾から要素を取り除く
array_product%number array_product(array $array)%配列の値の積を計算する
array_push%int array_push(array $array, mixed $value1, [mixed ...])%一つ以上の要素を配列の最後に追加する
array_rand%mixed array_rand(array $array, [int $num = 1])%配列から一つ以上の要素をランダムに取得する
array_reduce%mixed array_reduce(array $array, callable $callback, [mixed $initial])%コールバック関数を用いて配列を普通の値に変更することにより、配列を再帰的に減らす
array_replace%array array_replace(array $array1, array $array2, [array ...])%渡された配列の要素を置き換える
array_replace_recursive%array array_replace_recursive(array $array1, array $array2, [array ...])%渡された配列の要素を再帰的に置き換える
array_reverse%array array_reverse(array $array, [bool $preserve_keys = false])%要素を逆順にした配列を返す
array_search%mixed array_search(mixed $needle, array $haystack, [bool $strict = false])%指定した値を配列で検索し、見つかった場合に対応する最初のキーを返す
array_shift%mixed array_shift(array $array)%配列の先頭から要素を一つ取り出す
array_slice%array array_slice(array $array, int $offset, [int $length], [bool $preserve_keys = false])%配列の一部を展開する
array_splice%array array_splice(array $input, int $offset, [int $length = count($input)], [mixed $replacement = array()])%配列の一部を削除し、他の要素で置換する
array_sum%number array_sum(array $array)%配列の中の値の合計を計算する
array_udiff%array array_udiff(array $array1, array $array2, [array ...], callable $value_compare_func)%データの比較にコールバック関数を用い、配列の差を計算する
array_udiff_assoc%array array_udiff_assoc(array $array1, array $array2, [array ...], callable $value_compare_func)%データの比較にコールバック関数を用い、 追加された添字の確認を含めて配列の差を計算する
array_udiff_uassoc%array array_udiff_uassoc(array $array1, array $array2, [array ...], callable $value_compare_func, callable $key_compare_func)%データと添字の比較にコールバック関数を用い、 追加された添字の確認を含めて配列の差を計算する
array_uintersect%array array_uintersect(array $array1, array $array2, [array ...], callable $value_compare_func)%データの比較にコールバック関数を用い、配列の共通項を計算する
array_uintersect_assoc%array array_uintersect_assoc(array $array1, array $array2, [array ...], callable $value_compare_func)%データの比較にコールバック関数を用い、 追加された添字の確認も含めて配列の共通項を計算する
array_uintersect_uassoc%array array_uintersect_uassoc(array $array1, array $array2, [array ...], callable $value_compare_func, callable $key_compare_func)%データと添字の比較に個別のコールバック関数を用い、 追加された添字の確認も含めて配列の共通項を計算する
array_unique%array array_unique(array $array, [int $sort_flags = SORT_STRING])%配列から重複した値を削除する
array_unshift%int array_unshift(array $array, mixed $value1, [mixed ...])%一つ以上の要素を配列の最初に加える
array_values%array array_values(array $array)%配列の全ての値を返す
array_walk%bool array_walk(array $array, callable $callback, [mixed $userdata])%配列の全ての要素にユーザー定義の関数を適用する
array_walk_recursive%bool array_walk_recursive(array $array, callable $callback, [mixed $userdata])%配列の全ての要素に、ユーザー関数を再帰的に適用する
arsort%bool arsort(array $array, [int $sort_flags = SORT_REGULAR])%連想キーと要素との関係を維持しつつ配列を逆順にソートする
asin%float asin(float $arg)%逆正弦(アークサイン)
asinh%float asinh(float $arg)%逆双曲線正弦(アークハイパボリックサイン)
asort%bool asort(array $array, [int $sort_flags = SORT_REGULAR])%連想キーと要素との関係を維持しつつ配列をソートする
assert%bool assert(mixed $assertion, [string $description], [Throwable $exception])%assertion が FALSE であるかどうかを調べる
assert_options%mixed assert_options(int $what, [mixed $value])%様々な assert フラグを設定/取得する
atan%float atan(float $arg)%逆正接(アークタンジェント)
atan2%float atan2(float $y, float $x)%2 変数のアークタンジェント
atanh%float atanh(float $arg)%逆双曲線正接(アークハイパボリックタンジェント)
base64_decode%string base64_decode(string $data, [bool $strict = false])%MIME base64 方式によりエンコードされたデータをデコードする
base64_encode%string base64_encode(string $data)%MIME base64 方式でデータをエンコードする
base_convert%string base_convert(string $number, int $frombase, int $tobase)%数値の基数を任意に変換する
basename%string basename(string $path, [string $suffix])%パスの最後にある名前の部分を返す
bcadd%string bcadd(string $left_operand, string $right_operand, [int $scale])%2つの任意精度の数値を加算する
bccomp%int bccomp(string $left_operand, string $right_operand, [int $scale])%2 つの任意精度数値を比較する
bcdiv%string bcdiv(string $left_operand, string $right_operand, [int $scale])%2つの任意精度数値で除算を行う
bcmod%string bcmod(string $left_operand, string $modulus)%2 つの任意精度数値の剰余を取得する
bcmul%string bcmul(string $left_operand, string $right_operand, [int $scale])%2つの任意精度数値の乗算を行う
bcpow%string bcpow(string $left_operand, string $right_operand, [int $scale])%任意精度数値をべき乗する
bcpowmod%string bcpowmod(string $left_operand, string $right_operand, string $modulus, [int $scale])%任意精度数値のべき乗の、指定した数値による剰余
bcscale%bool bcscale(int $scale)%すべての BC 演算関数におけるデフォルトのスケールを設定する
bcsqrt%string bcsqrt(string $operand, [int $scale])%任意精度数値の平方根を取得する
bcsub%string bcsub(string $left_operand, string $right_operand, [int $scale])%任意精度数値の減算を行う
bin2hex%string bin2hex(string $str)%バイナリのデータを16進表現に変換する
bind_textdomain_codeset%string bind_textdomain_codeset(string $domain, string $codeset)%DOMAIN メッセージカタログから返されるメッセージの文字エンコーディングを指定する
bindec%float bindec(string $binary_string)%2 進数 を 10 進数に変換する
bindtextdomain%string bindtextdomain(string $domain, string $directory)%ドメインのパスを設定する
blenc_encrypt%string blenc_encrypt(string $plaintext, string $encodedfile, [string $encryption_key])%Encrypt a PHP script with BLENC.
boolval%boolean boolval(mixed $var)%変数の boolean としての値を取得する
bson_decode%array bson_decode(string $bson)%BSON オブジェクトを PHP の配列に復元する
bson_encode%string bson_encode(mixed $anything)%PHP の変数を BSON 文字列に変換する
bzclose%int bzclose(resource $bz)%bzip2 ファイルを閉じる
bzcompress%mixed bzcompress(string $source, [int $blocksize = 4], [int $workfactor])%文字列をbzip2形式のデータに圧縮する
bzdecompress%mixed bzdecompress(string $source, [int $small])%bzip2 形式のデータを解凍する
bzerrno%int bzerrno(resource $bz)%bzip2 エラー番号を返す
bzerror%array bzerror(resource $bz)%bzip2 エラー番号とエラー文字列を配列で返す
bzerrstr%string bzerrstr(resource $bz)%bzip2 エラー文字列を返す
bzflush%bool bzflush(resource $bz)%全てのバッファリングされたデータを強制的に書き込む
bzopen%resource bzopen(mixed $file, string $mode)%bzip2 圧縮されたファイルをオープンする
bzread%string bzread(resource $bz, [int $length = 1024])%バイナリ対応の bzip2 ファイル読み込み
bzwrite%int bzwrite(resource $bz, string $data, [int $length])%バイナリ対応の bzip2 ファイルへの書き込み
cal_days_in_month%int cal_days_in_month(int $calendar, int $month, int $year)%指定した年とカレンダーについて、月の日数を返す
cal_from_jd%array cal_from_jd(int $jd, int $calendar)%ユリウス積算日からサポートされるカレンダーに変換する
cal_info%array cal_info([int $calendar = -1])%特定のカレンダーに関する情報を返す
cal_to_jd%int cal_to_jd(int $calendar, int $month, int $day, int $year)%サポートされるカレンダーからユリウス積算日に変換する
call_user_func%mixed call_user_func(callable $callback, [mixed $parameter], [mixed ...])%最初の引数で指定したコールバック関数をコールする
call_user_func_array%mixed call_user_func_array(callable $callback, array $param_arr)%パラメータの配列を指定してコールバック関数をコールする
call_user_method%mixed call_user_method(string $method_name, object $obj, [mixed $parameter], [mixed ...])%指定したオブジェクトのユーザーメソッドをコールする
call_user_method_array%mixed call_user_method_array(string $method_name, object $obj, array $params)%パラメータの配列を指定してユーザーメソッドをコールする
ceil%float ceil(float $value)%端数の切り上げ
chdir%bool chdir(string $directory)%ディレクトリを変更する
checkdate%bool checkdate(int $month, int $day, int $year)%グレゴリオ暦の日付/時刻の妥当性を確認します
checkdnsrr%bool checkdnsrr(string $host, [string $type = "MX"])%指定したインターネットホスト名もしくは IP アドレスに対応する DNS レコードを検索する
chgrp%bool chgrp(string $filename, mixed $group)%ファイルのグループを変更する
chmod%bool chmod(string $filename, int $mode)%ファイルのモードを変更する
chop%void chop()%rtrim のエイリアス
chown%bool chown(string $filename, mixed $user)%ファイルの所有者を変更する
chr%string chr(int $ascii)%特定の文字を返す
chroot%void chroot()%ルートディレクトリを変更する
chunk_split%string chunk_split(string $body, [int $chunklen = 76], [string $end = "\r\n"])%文字列をより小さな部分に分割する
class_alias%bool class_alias(string $original, string $alias, [bool $autoload])%クラスのエイリアスを作成する
class_exists%bool class_exists(string $class_name, [bool $autoload = true])%クラスが定義済みかどうかを確認する
class_implements%array class_implements(mixed $class, [bool $autoload = true])%与えられたクラスあるいはインターフェイスが実装しているインターフェイスを返す
class_parents%array class_parents(mixed $class, [bool $autoload = true])%与えられたクラスの親クラスを返す
class_uses%array class_uses(mixed $class, [bool $autoload = true])%指定したクラスが使っているトレイトを返す
clearstatcache%void clearstatcache([bool $clear_realpath_cache = false], [string $filename])%ファイルのステータスのキャッシュをクリアする
cli_get_process_title%string cli_get_process_title()%現在のプロセスのタイトルを返す
cli_set_process_title%bool cli_set_process_title(string $title)%プロセスのタイトルを設定する
closedir%void closedir([resource $dir_handle])%ディレクトリハンドルをクローズする
closelog%bool closelog()%システムログへの接続を閉じる
collator_asort%bool collator_asort(array $arr, [int $sort_flag], Collator $coll)%インデックスの情報を保持しつつ配列を並べ替える
collator_compare%int collator_compare(string $str1, string $str2, Collator $coll)%ふたつの Unicode 文字列を比較する
collator_create%Collator collator_create(string $locale)%collator を作成する
collator_get_attribute%int collator_get_attribute(int $attr, Collator $coll)%照合用の属性の値を取得する
collator_get_error_code%int collator_get_error_code(Collator $coll)%collator の直近のエラーコードを取得する
collator_get_error_message%string collator_get_error_message(Collator $coll)%collator の直近のエラーコードのテキストを取得する
collator_get_locale%string collator_get_locale(int $type, Collator $coll)%collator のロケール名を取得する
collator_get_sort_key%string collator_get_sort_key(string $str, Collator $coll)%文字列のソート用のキーを取得する
collator_get_strength%int collator_get_strength(Collator $coll)%現在の照合強度を取得する
collator_set_attribute%bool collator_set_attribute(int $attr, int $val, Collator $coll)%照合用の属性を設定する
collator_set_strength%bool collator_set_strength(int $strength, Collator $coll)%照合強度を設定する
collator_sort%bool collator_sort(array $arr, [int $sort_flag], Collator $coll)%指定した collator で配列を並べ替える
collator_sort_with_sort_keys%bool collator_sort_with_sort_keys(array $arr, Collator $coll)%指定した collator とキーで配列を並べ替える
com_create_guid%string com_create_guid()%グローバルユニーク ID (GUID) を生成する
com_event_sink%bool com_event_sink(variant $comobject, object $sinkobject, [mixed $sinkinterface])%COM オブジェクトのイベントを PHP オブジェクトに接続する
com_get_active_object%variant com_get_active_object(string $progid, [int $code_page])%すでに実行中の COM オブジェクトのインスタンスへのハンドルを返す
com_load_typelib%bool com_load_typelib(string $typelib_name, [bool $case_insensitive = true])%タイプライブラリを読み込む
com_message_pump%bool com_message_pump([int $timeoutms])%COM メッセージを処理し、timeoutms ミリ秒の間待つ
com_print_typeinfo%bool com_print_typeinfo(object $comobject, [string $dispinterface], [bool $wantsink = false])%ディスパッチインターフェイスのために、PHP のクラス定義を出力する
compact%array compact(mixed $varname1, [mixed ...])%変数名とその値から配列を作成する
connection_aborted%int connection_aborted()%クライアントとの接続が切断されているかどうかを調べる
connection_status%int connection_status()%接続ステータスのビットフィールドを返す
constant%mixed constant(string $name)%定数の値を返す
convert_cyr_string%string convert_cyr_string(string $str, string $from, string $to)%キリル文字セットを他のものに変換する
convert_uudecode%string convert_uudecode(string $data)%uuencode された文字列をデコードする
convert_uuencode%string convert_uuencode(string $data)%文字列を uuencode する
copy%bool copy(string $source, string $dest, [resource $context])%ファイルをコピーする
cos%float cos(float $arg)%余弦(コサイン)
cosh%float cosh(float $arg)%双曲線余弦(ハイパボリックコサイン)
count%int count(mixed $array_or_countable, [int $mode = COUNT_NORMAL])%変数に含まれるすべての要素、 あるいはオブジェクトに含まれる何かの数を数える
count_chars%mixed count_chars(string $string, [int $mode])%文字列で使用されている文字に関する情報を返す
crc32%int crc32(string $str)%文字列の crc32 多項式計算を行う
create_function%string create_function(string $args, string $code)%匿名関数 (ラムダ形式) を作成する
crypt%string crypt(string $str, [string $salt])%文字列の一方向のハッシュ化を行う
ctype_alnum%bool ctype_alnum(string $text)%英数字かどうかを調べる
ctype_alpha%bool ctype_alpha(string $text)%英字かどうかを調べる
ctype_cntrl%bool ctype_cntrl(string $text)%制御文字かどうかを調べる
ctype_digit%bool ctype_digit(string $text)%数字かどうかを調べる
ctype_graph%bool ctype_graph(string $text)%空白以外の印字可能な文字かどうかを調べる
ctype_lower%bool ctype_lower(string $text)%小文字かどうかを調べる
ctype_print%bool ctype_print(string $text)%印字可能な文字かどうかを調べる
ctype_punct%bool ctype_punct(string $text)%空白、英数字以外の出力可能な文字かどうかを調べる
ctype_space%bool ctype_space(string $text)%空白文字かどうか調べる
ctype_upper%bool ctype_upper(string $text)%大文字かどうか調べる
ctype_xdigit%bool ctype_xdigit(string $text)%16 進数を表す文字かどうかを調べる
curl_close%void curl_close(resource $ch)%cURL セッションを閉じる
curl_copy_handle%resource curl_copy_handle(resource $ch)%cURL ハンドルを、その設定も含めてコピーする
curl_errno%int curl_errno(resource $ch)%直近のエラー番号を返す
curl_error%string curl_error(resource $ch)%現在のセッションに関する直近のエラー文字列を返す
curl_escape%string curl_escape(resource $ch, string $str)%指定した文字列を URL エンコードする
curl_exec%mixed curl_exec(resource $ch)%cURL セッションを実行する
curl_file_create%CURLFile curl_file_create(string $filename, [string $mimetype], [string $postname])%CURLFile オブジェクトを作る
curl_getinfo%mixed curl_getinfo(resource $ch, [int $opt])%指定した伝送に関する情報を得る
curl_init%resource curl_init([string $url])%cURL セッションを初期化する
curl_multi_add_handle%int curl_multi_add_handle(resource $mh, resource $ch)%cURL マルチハンドルに、通常の cURL ハンドルを追加する
curl_multi_close%void curl_multi_close(resource $mh)%cURL ハンドルのセットを閉じる
curl_multi_exec%int curl_multi_exec(resource $mh, int $still_running)%現在の cURL ハンドルから、サブ接続を実行する
curl_multi_getcontent%string curl_multi_getcontent(resource $ch)%CURLOPT_RETURNTRANSFER が設定されている場合に、cURL ハンドルの内容を返す
curl_multi_info_read%array curl_multi_info_read(resource $mh, [int $msgs_in_queue])%現在の転送についての情報を表示する
curl_multi_init%resource curl_multi_init()%新規 cURL マルチハンドルを返す
curl_multi_remove_handle%int curl_multi_remove_handle(resource $mh, resource $ch)%cURL ハンドルのセットからマルチハンドルを削除する
curl_multi_select%int curl_multi_select(resource $mh, [float $timeout = 1.0])%curl_multi 接続のアクティビティを待つ
curl_multi_setopt%bool curl_multi_setopt(resource $mh, int $option, mixed $value)%cURL マルチハンドル用のオプションを設定する
curl_multi_strerror%string curl_multi_strerror(int $errornum)%エラーの内容を表す文字列を返す
curl_pause%int curl_pause(resource $ch, int $bitmask)%接続の中断と再開をする
curl_reset%void curl_reset(resource $ch)%libcurl セッションハンドルのすべてのオプションをリセットする
curl_setopt%bool curl_setopt(resource $ch, int $option, mixed $value)%cURL 転送用オプションを設定する
curl_setopt_array%bool curl_setopt_array(resource $ch, array $options)%CURL 転送用の複数のオプションを設定する
curl_share_close%void curl_share_close(resource $sh)%cURL 共有ハンドルを閉じる
curl_share_init%resource curl_share_init()%curl 共有ハンドルを初期化する
curl_share_setopt%bool curl_share_setopt(resource $sh, int $option, string $value)%cURL 共有ハンドルのオプションを設定する
curl_strerror%string curl_strerror(int $errornum)%エラーコードの説明を返す
curl_unescape%string curl_unescape(resource $ch, string $str)%URL エンコードされた文字列をデコードする
curl_version%array curl_version([int $age = CURLVERSION_NOW])%cURL のバージョンを返す
current%mixed current(array $array)%配列内の現在の要素を返す
date%string date(string $format, [int $timestamp = time()])%ローカルの日付/時刻を書式化する
date_add%void date_add()%DateTime::add のエイリアス
date_create%void date_create()%DateTime::__construct のエイリアス
date_create_from_format%void date_create_from_format()%DateTime::createFromFormat のエイリアス
date_create_immutable%void date_create_immutable()%DateTimeImmutable::__construct のエイリアス
date_create_immutable_from_format%void date_create_immutable_from_format()%DateTimeImmutable::createFromFormat のエイリアス
date_date_set%void date_date_set()%DateTime::setDate のエイリアス
date_default_timezone_get%string date_default_timezone_get()%スクリプト中の日付/時刻関数で使用されるデフォルトタイムゾーンを取得する
date_default_timezone_set%bool date_default_timezone_set(string $timezone_identifier)%スクリプト中の日付/時刻関数で使用されるデフォルトタイムゾーンを設定する
date_diff%void date_diff()%DateTime::diff のエイリアス
date_format%void date_format()%DateTime::format のエイリアス
date_get_last_errors%void date_get_last_errors()%DateTime::getLastErrors のエイリアス
date_interval_create_from_date_string%void date_interval_create_from_date_string()%DateInterval::createFromDateString のエイリアス
date_interval_format%void date_interval_format()%DateInterval::format のエイリアス
date_isodate_set%void date_isodate_set()%DateTime::setISODate のエイリアス
date_modify%void date_modify()%DateTime::modify のエイリアス
date_offset_get%void date_offset_get()%DateTime::getOffset のエイリアス
date_parse%array date_parse(string $date)%指定した日付に関する詳細な情報を連想配列で返す
date_parse_from_format%array date_parse_from_format(string $format, string $date)%指定した書式でフォーマットされた日付についての情報を取得する
date_sub%void date_sub()%DateTime::sub のエイリアス
date_sun_info%array date_sun_info(int $time, float $latitude, float $longitude)%日の出/日の入り時刻と薄明かり (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])%指定した日付と場所についての日の出時刻を返す
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])%指定した日付と場所についての日の入り時刻を返す
date_time_set%void date_time_set()%DateTime::setTime のエイリアス
date_timestamp_get%void date_timestamp_get()%DateTime::getTimestamp のエイリアス
date_timestamp_set%void date_timestamp_set()%DateTime::setTimestamp のエイリアス
date_timezone_get%void date_timezone_get()%DateTime::getTimezone のエイリアス
date_timezone_set%void date_timezone_set()%DateTime::setTimezone のエイリアス
datefmt_create%IntlDateFormatter datefmt_create(string $locale, int $datetype, int $timetype, [mixed $timezone = NULL], [mixed $calendar = NULL], [string $pattern = ""])%Date Formatter を作成する
datefmt_format%string datefmt_format(mixed $value, IntlDateFormatter $fmt)%日付/時刻 の値を文字列としてフォーマットする
datefmt_format_object%string datefmt_format_object(object $object, [mixed $format = NULL], [string $locale = NULL])%オブジェクトの書式を設定する
datefmt_get_calendar%int datefmt_get_calendar(IntlDateFormatter $fmt)%IntlDateFormatter が使用するカレンダー型を取得する
datefmt_get_calendar_object%IntlCalendar datefmt_get_calendar_object()%カレンダーオブジェクトのコピーを取得する
datefmt_get_datetype%int datefmt_get_datetype(IntlDateFormatter $fmt)%IntlDateFormatter が使用する日付形式を取得する
datefmt_get_error_code%int datefmt_get_error_code(IntlDateFormatter $fmt)%直近の操作のエラーコードを取得する
datefmt_get_error_message%string datefmt_get_error_message(IntlDateFormatter $fmt)%直近の操作のエラーテキストを取得する
datefmt_get_locale%string datefmt_get_locale([int $which], IntlDateFormatter $fmt)%Formatter が使用するロケールを取得する
datefmt_get_pattern%string datefmt_get_pattern(IntlDateFormatter $fmt)%IntlDateFormatter が使用するパターンを取得する
datefmt_get_timetype%int datefmt_get_timetype(IntlDateFormatter $fmt)%IntlDateFormatter が使用する時刻形式を取得する
datefmt_get_timezone%IntlTimeZone datefmt_get_timezone()%タイムゾーンを取得する
datefmt_get_timezone_id%string datefmt_get_timezone_id(IntlDateFormatter $fmt)%IntlDateFormatter が使用するタイムゾーン ID を取得する
datefmt_is_lenient%bool datefmt_is_lenient(IntlDateFormatter $fmt)%IntlDateFormatter で使用する寛大さを取得する
datefmt_localtime%array datefmt_localtime(string $value, [int $position], IntlDateFormatter $fmt)%文字列をパースして、フィールドベースの時刻値にする
datefmt_parse%int datefmt_parse(string $value, [int $position], IntlDateFormatter $fmt)%文字列をパースしてタイムスタンプにする
datefmt_set_calendar%bool datefmt_set_calendar(mixed $which, IntlDateFormatter $fmt)%Formatter が使うカレンダー型を設定する
datefmt_set_lenient%bool datefmt_set_lenient(bool $lenient, IntlDateFormatter $fmt)%パーサの寛大さを設定する
datefmt_set_pattern%bool datefmt_set_pattern(string $pattern, IntlDateFormatter $fmt)%IntlDateFormatter が使用するパターンを設定する
datefmt_set_timezone%boolean datefmt_set_timezone(mixed $zone)%タイムゾーンを設定する
datefmt_set_timezone_id%bool datefmt_set_timezone_id(string $zone, IntlDateFormatter $fmt)%使用するタイムゾーンを設定する
dba_close%void dba_close(resource $handle)%DBA データベースを閉じる
dba_delete%bool dba_delete(string $key, resource $handle)%キーが指す DBA エントリを削除する
dba_exists%bool dba_exists(string $key, resource $handle)%キーが存在するかどうかを確認する
dba_fetch%string dba_fetch(string $key, resource $handle, int $skip)%キーが指すデータを取得する
dba_firstkey%string dba_firstkey(resource $handle)%最初のキーを取得する
dba_handlers%array dba_handlers([bool $full_info = false])%利用可能なハンドラの一覧を得る
dba_insert%bool dba_insert(string $key, string $value, resource $handle)%エントリを挿入する
dba_key_split%mixed dba_key_split(mixed $key)%文字列形式のキーを配列形式に分割する
dba_list%array dba_list()%オープンされている全データベースファイルのリストを得る
dba_nextkey%string dba_nextkey(resource $handle)%次のキーを取得する
dba_open%resource dba_open(string $path, string $mode, [string $handler], [mixed ...])%データベースをオープンする
dba_optimize%bool dba_optimize(resource $handle)%データベースを最適化する
dba_popen%resource dba_popen(string $path, string $mode, [string $handler], [mixed ...])%データベースを持続的にオープンする
dba_replace%bool dba_replace(string $key, string $value, resource $handle)%エントリを置換または挿入する
dba_sync%bool dba_sync(resource $handle)%データベースを同期する
dbx_close%int dbx_close(object $link_identifier)%オープンされた接続/データベースを閉じる
dbx_compare%int dbx_compare(array $row_a, array $row_b, string $column_key, [int $flags = DBX_CMP_ASC | DBX_CMP_NATIVE])%ソートするために二つのレコードを比較する
dbx_connect%object dbx_connect(mixed $module, string $host, string $database, string $username, string $password, [int $persistent])%接続/データベースをオープンする
dbx_error%string dbx_error(object $link_identifier)%使用するモジュールの最新の関数コールにおけるエラーメッセージを出力する
dbx_escape_string%string dbx_escape_string(object $link_identifier, string $text)%SQL ステートメントで安全に使用できるように文字列をエスケープする
dbx_fetch_row%mixed dbx_fetch_row(object $result_identifier)%DBX_RESULT_UNBUFFERED フラグを指定した クエリ結果から、行を取得する
dbx_query%mixed dbx_query(object $link_identifier, string $sql_statement, [int $flags])%クエリを送信し、(ある場合には)結果を全て取得する
dbx_sort%bool dbx_sort(object $result, string $user_compare_function)%カスタマイズされたソート関数により、dbx_query から結果をソートする
dcgettext%string dcgettext(string $domain, string $message, int $category)%単一の参照に関するドメインを上書きする
dcngettext%string dcngettext(string $domain, string $msgid1, string $msgid2, int $n, int $category)%dcgettext の複数形版
debug_backtrace%array debug_backtrace([int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT], [int $limit])%バックトレースを生成する
debug_print_backtrace%void debug_print_backtrace([int $options], [int $limit])%バックトレースを表示する
debug_zval_dump%void debug_zval_dump(mixed $variable, [mixed ...])%内部的な Zend の値を表す文字列をダンプする
decbin%string decbin(int $number)%10 進数を 2 進数に変換する
dechex%string dechex(int $number)%10 進数を 16 進数に変換する
decoct%string decoct(int $number)%10 進数を 8 進数に変換する
define%bool define(string $name, mixed $value, [bool $case_insensitive = false])%名前を指定して定数を定義する
define_syslog_variables%void define_syslog_variables()%syslog に関係する全ての定数を初期化する
defined%bool defined(string $name)%指定した名前の定数が存在するかどうかを調べる
deflate_add%string deflate_add(resource $context, string $data, [int $flush_mode = ZLIB_SYNC_FLUSH])%Incrementally deflate data
deflate_init%resource deflate_init(int $encoding, [array $options = array()])%Initialize an incremental deflate context
deg2rad%float deg2rad(float $number)%度単位の数値をラジアン単位に変換する
delete%void delete()%unlink か unset を参照してください
dgettext%string dgettext(string $domain, string $message)%現在のドメインを上書きする
die%void die()%exit と同等
dir%Directory dir(string $directory, [resource $context])%ディレクトリクラスのインスタンスを返す
dirname%string dirname(string $path, [int $levels = 1])%親ディレクトリのパスを返す
disk_free_space%float disk_free_space(string $directory)%ファイルシステムあるいはディスクパーティション上で利用可能な領域を返す
disk_total_space%float disk_total_space(string $directory)%ファイルシステムあるいはディスクパーティションの全体サイズを返す
diskfreespace%void diskfreespace()%disk_free_space のエイリアス
dl%bool dl(string $library)%実行時に PHP 拡張モジュールをロードする
dngettext%string dngettext(string $domain, string $msgid1, string $msgid2, int $n)%dgettext の複数形版
dns_check_record%void dns_check_record()%checkdnsrr のエイリアス
dns_get_mx%void dns_get_mx()%getmxrr のエイリアス
dns_get_record%array dns_get_record(string $hostname, [int $type = DNS_ANY], [array $authns], [array $addtl], [bool $raw = false])%ホスト名に関連する DNS リソースレコードを取得する
dom_import_simplexml%DOMElement dom_import_simplexml(SimpleXMLElement $node)%SimpleXMLElement オブジェクトから DOMElement オブジェクトを取得する
doubleval%void doubleval()%floatval のエイリアス
each%array each(array $array)%配列から現在のキーと値のペアを返して、カーソルを進める
easter_date%int easter_date([int $year = date("Y")])%指定した年における復活祭の真夜中のUnix時を得る