[PHP-DEV] cvs: /php3 funclist.php3 From: Kristian Köhntopp (kk <email protected>)
Date: 11/17/99

kk Wed Nov 17 10:59:23 1999 EDT

  Modified files:
    /php3 funclist.php3
  Log:
  Last minute changes (finds 66 Modules and 1294 functions).
  
  
Index: php3/funclist.php3
diff -u php3/funclist.php3:1.1 php3/funclist.php3:1.2
--- php3/funclist.php3:1.1 Wed Nov 17 10:54:32 1999
+++ php3/funclist.php3 Wed Nov 17 10:59:22 1999
@@ -110,10 +110,10 @@
 
 reset($func);
 while(list($k, $v) = each($func)) :
- printf("Function %s (Module %s, %s:%s):\n",
- $k, $v["module", $v["file"], $v["cfunc"]);
+ printf("Function %s (Module %s, %s:%s()):\n",
+ $k, $v["module"], $v["file"], $v["cfunc"]);
   printf("%s %s(%s)\n", $v["return"], $k, $v["parameter"]);
- printf("%s\n", $v["desc"]);
+ printf("%s\n\n", $v["desc"]);
 endwhile;
 exit;
 ?>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>