Created
May 29, 2017 22:19
-
-
Save 3D-I/cc991b784ef0824c17e9bb6edcd83bca to your computer and use it in GitHub Desktop.
Steamsuite ext - Requirements check-in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Steam suite. An extension for the phpBB Forum Software package. | |
* | |
* @copyright (c) 2017, 3Di, http://3di.space/32/ | |
* @license GNU General Public License, version 2 (GPL-2.0) | |
* | |
* Requirements' check-in | |
* | |
*/ | |
if ( function_exists('simplexml_load_string') ) | |
{ | |
echo '<br />simplexml_load_string is TRUE!<br />'; | |
} | |
else | |
{ | |
echo '<br />simplexml_load_string is FALSE!<br />'; | |
} | |
if ( function_exists('iconv') ) | |
{ | |
echo '<br />iconv is TRUE!<br />'; | |
} | |
else | |
{ | |
echo '<br />iconv is FALSE!<br />'; | |
} | |
if ( function_exists('curl_version') ) | |
{ | |
echo '<br />cURL is TRUE!<br />'; | |
} | |
else | |
{ | |
echo '<br />cURL is FALSE!<br />'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment