动网抄袭VBB 今天看动网的代码的时候,突然发现uploads\inc\xml.class.php和VBB的class_xml.php很像. 后来才看到vbb中文修改,然后再重新看,又看到头部的Jelsoft Enterprises Ltd. All Rights Reserved.晕~~~先是PW,现在到VBB... ... <?php /*======================================================================*\ || #################################################################### || || # ---------------------------------------------------------------- # || || # Copyright 2000-2006 Jelsoft Enterprises Ltd. All Rights Reserved. || || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || # .:: Nullified by Kite ::. # || || #################################################################### || \*======================================================================*/ error_reporting(E_ALL & ~E_NOTICE); // Attempt to load XML extension if we don't have the XML functions // already loaded. if (!function_exists('xml_set_element_handler')) { $extension_dir = ini_get('extension_dir'); if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')) { $extension_file = 'php_xml.dll'; } else { $extension_file = 'xml.so'; } if ($extension_dir AND file_exists($extension_dir . '/' . $extension_file)) { ini_set('display_errors', true); dl($extension_file); } } $memory_limit = @ini_get('memory_limit'); if ($memory_limit AND ((strpos($memory_limit, 'M') AND intval($memory_limit) <= 8) OR intval($memory_limit) <= 9000000)) { @ini_set('memory_limit', 16 * 1024 * 1024); } /*======================================================================*\ || #################################################################### || # CVS: $RCSfile: class_xml.php,v $ - $Revision: 1.22 $ || #################################################################### \*======================================================================*/ ?> 要说DV就是厉害,借鉴人家连版权符号都留下