update : 2015.11.03
php.shukuma.com검색:
|
stream_get_filters(PHP 5) stream_get_filters — Retrieve list of registered filters 설명
array stream_get_filters
( void
)
Retrieve the list of registered filters on the running system. 반환값Returns an indexed array containing the name of all stream filters available. 예제
Example #1 Using stream_get_filters()
<?php 위 예제의 출력 예시: Array ( [0] => string.rot13 [1] => string.toupper [2] => string.tolower [3] => string.base64 [4] => string.quoted-printable ) 참고
|