|
update : 2015.11.03
php.shukuma.com검색:
|
stream_get_wrappers(PHP 5) stream_get_wrappers — Retrieve list of registered streams 설명
array stream_get_wrappers
( void
)
Retrieve list of registered streams available on the running system. 반환값Returns an indexed array containing the name of all stream wrappers available on the running system. 예제
Example #1 stream_get_wrappers() example
<?php위 예제의 출력 예시:
Array
(
[0] => php
[1] => file
[2] => http
[3] => ftp
[4] => compress.bzip2
[5] => compress.zlib
)
Example #2 Checking for the existence of a stream wrapper
<?php참고
|