settings_find.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: settings_find.php,v $
  15. // | $Date: 2004/02/10 01:34:25 $
  16. // | $Revision: 1.4 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Functions scanner
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL & ~E_NOTICE);
  22. include("./global.php");
  23. developer_check();
  24. admin_header('Server Information', 'Functions Scan');
  25. function find_settings($dirname) {
  26. global $setting_names, $settings_location;
  27. $dir = opendir($dirname);
  28. while ($file = readdir($dir)) {
  29. if (is_dir($dirname . $file) AND $file != '.' AND $file != '..' AND $file != 'CVS') {
  30. find_settings($dirname . $file . '/');
  31. }
  32. if (strstr($file, ".php") OR strstr($file, ".txt") OR strstr($file, ".html")) {
  33. $file = $dirname . $file;
  34. $fp = fopen($file, "r");
  35. $contents = fread($fp, filesize($file));
  36. fclose($fp);
  37. preg_match_all('|$settings['?([^']]*)'?]|', $contents, $matches);
  38. $setting_names = array_merge($setting_names, $matches[1]);
  39. $settings_location[] = array($file, $matches[1]);
  40. }
  41. }
  42. }
  43. find_settings("./../");
  44. $setting_names = array_unique($setting_names);
  45. // lets find names that are not in the database
  46. $db->query("SELECT settings FROM settings");
  47. while ($result = $db->row_array()) {
  48. if (!in_array($result[settings], $setting_names)) {
  49. echo "<b>$result[settings]</b> is in the database but is not found in the code</br>";
  50. }
  51. $database_settings[] = $result[settings];
  52. }
  53. echo "<br /><hr><br />";
  54. foreach ($setting_names AS $key => $var) {
  55. if (!in_array($var, $database_settings)) {
  56. echo "<b>$var</b> is in the code but is not found in the database</br>";
  57. }
  58. }
  59. echo "<br /><hr><br />";
  60. echo "<b>Debug code to find the location of an orphan setting</b>";
  61. print_rr($settings_location);
  62. ?>