File: idn.php

package info (click to toggle)
php-idn 1.2b-5.3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 328 kB
  • ctags: 92
  • sloc: ansic: 682; xml: 624; makefile: 76; sh: 38; php: 10
file content (12 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
<?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";
?>