Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > os > by-pkgid > e7922af02dabdfaf568db916b92b9a76 > files > 9

php-idn-1.2c-1.fc14.x86_64.rpm

<?php
if(!extension_loaded('idn')) {
	dl('idn.so');
}
$module = 'idn';
$functions = get_extension_funcs($module);
echo "Functions available in the test extension:<br>\n";
foreach($functions as $func) {
    echo $func."<br>\n";
}
echo "<br>\n";
?>