Display the drop-down list

stream_get_wrappers()

« strcspn | strftime »
<?php
$array 
stream_get_wrappers ();
?>
Result
$array = [
  
=> 'https',
  
=> 'ftps',
  
=> 'compress.zlib',
  
=> 'compress.bzip2',
  
=> 'php',
  
=> 'file',
  
=> 'glob',
  
=> 'data',
  
=> 'http',
  
=> 'ftp',
  
10 => 'phar',
  
11 => 'zip',
]
Examples
#1 stream_get_wrappers  ()