国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

HTMLPurifier.autoload-legacy.php 227B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Legacy autoloader for systems lacking spl_autoload_register
  5. *
  6. */
  7. spl_autoload_register(function($class)
  8. {
  9. return HTMLPurifier_Bootstrap::autoload($class);
  10. });
  11. // vim: et sw=4 sts=4