diff options
author | SVN Migration <svn@php.net> | 2002-11-26 01:38:49 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-11-26 01:38:49 +0000 |
commit | 83fc7fc84fc2b439da0cc4e08cb511d9753dbcca (patch) | |
tree | e884842697b6fca255c96f627a4dbd17f0a7d97a /ext/skeleton/skeleton.php | |
parent | 693204265e3970c58932aef21fb4d25e3f1ea1fd (diff) | |
download | php-git-RELEASE_1_0b2.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b2'.RELEASE_1_0b2
Diffstat (limited to 'ext/skeleton/skeleton.php')
-rw-r--r-- | ext/skeleton/skeleton.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/skeleton/skeleton.php b/ext/skeleton/skeleton.php deleted file mode 100644 index 6774d63624..0000000000 --- a/ext/skeleton/skeleton.php +++ /dev/null @@ -1,19 +0,0 @@ -<? -if(!extension_loaded('extname')) { - dl('extname.so'); -} -$module = 'extname'; -$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"; -$function = 'confirm_' . $module . '_compiled'; -if (extension_loaded($module)) { - $str = $function($module); -} else { - $str = "Module $module is not compiled into PHP"; -} -echo "$str\n"; -?> |