Skip to content

Instantly share code, notes, and snippets.

@rxu
Last active August 29, 2015 14:09
Show Gist options
  • Save rxu/0e4ceefdc84d7e85430f to your computer and use it in GitHub Desktop.
Save rxu/0e4ceefdc84d7e85430f to your computer and use it in GitHub Desktop.
Get PHP wrappers
<?php
$w = stream_get_wrappers();
echo 'openssl: ', extension_loaded ('openssl') ? 'yes':'no', "\n";
echo 'http wrapper: ', in_array('http', $w) ? 'yes':'no', "\n";
echo 'https wrapper: ', in_array('https', $w) ? 'yes':'no', "\n";
echo 'wrappers: ', var_dump($w);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment