summaryrefslogtreecommitdiff
path: root/ext/sockets/sockets.php
blob: 3bb624cd57b94a0071e2ec3a9ae966eb6456a3b3 (plain)
1
2
3
4
5
6
7
8
9
10
<?
$module = 'sockets';
$function = 'confirm_' . $module . '_compiled';
if (extension_loaded($module)) {
	$str = $function($module);
} else {
	$str = "Module $module is not compiled in PHP";
}
echo "$str\n";
?>