Skip to content

Instantly share code, notes, and snippets.

@3D-I
Created May 29, 2017 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3D-I/cc991b784ef0824c17e9bb6edcd83bca to your computer and use it in GitHub Desktop.
Save 3D-I/cc991b784ef0824c17e9bb6edcd83bca to your computer and use it in GitHub Desktop.
Steamsuite ext - Requirements check-in
<?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