Advertisement
Guest User

.

a guest
Feb 15th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2. echo 'curl '              . (function_exists('curl_init')         ? 'is enabled'   : 'is not enabled')    . '<br/>';
  3. echo 'DOMDocument '       . (class_exists('DOMDocument')          ? 'is installed' : 'is not installed') . '<br/>';
  4. echo 'file_get_contents ' . (function_exists('file_get_contents') ? 'is enabled'   : 'is not enabled')   . '<br/>';
  5. echo 'file_put_contents ' . (function_exists('file_put_contents') ? 'is enabled'   : 'is not enabled')   . '<br/>';
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement