Index.php 403 B

123456789101112131415161718192021
  1. <?php
  2. namespace Heanup\App\Api\Controller;
  3. use Heanup\App\Api\Config\Site;
  4. use Heanup\App\Api\Controller;
  5. use Heanup\App\Api\Model\Dataoke;
  6. class Index extends Controller
  7. {
  8. protected function main()
  9. {
  10. $url = Site::getData('site_url') . "/tao.php?r=index/index";
  11. $content = file_get_contents($url);
  12. $content = Dataoke::parse($content);
  13. echo $content;
  14. }
  15. }