Advertisement
Moslem1337

Untitled

Jan 17th, 2023
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. <script type='text/javascript' src='//chocolatebushbunny.com/ca/ec/f8/caecf871a6f080882d36af6aef0cc4dd.js'></script>
  2. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5792378963735902"
  3. crossorigin="anonymous"></script>
  4. <?php
  5. /*
  6. * +----------------------------------------------------------------------+
  7. * | ThinkSNS Plus |
  8. * +----------------------------------------------------------------------+
  9. * | Copyright (c) 2017 Chengdu ZhiYiChuangXiang Technology Co., Ltd. |
  10. * +----------------------------------------------------------------------+
  11. * | This source file is subject to version 2.0 of the Apache license, |
  12. * | that is bundled with this package in the file LICENSE, and is |
  13. * | available through the world-wide-web at the following url: |
  14. * | http://www.apache.org/licenses/LICENSE-2.0.html |
  15. * +----------------------------------------------------------------------+
  16. * | Author: Slim Kit Group <master@zhiyicx.com> |
  17. * | Homepage: www.thinksns.com |
  18. * +----------------------------------------------------------------------+
  19. */
  20.  
  21. define('LARAVEL_START', microtime(true));
  22.  
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Register The Auto Loader
  26. |--------------------------------------------------------------------------
  27. |
  28. | Composer provides a convenient, automatically generated class loader for
  29. | our application. We just need to utilize it! We'll simply require it
  30. | into the script here so that we don't have to worry about manual
  31. | loading any of our classes later on. It feels great to relax.
  32. |
  33. */
  34.  
  35. require __DIR__.'/../vendor/autoload.php';
  36.  
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Turn On The Lights
  40. |--------------------------------------------------------------------------
  41. |
  42. | We need to illuminate PHP development, so let us turn on the lights.
  43. | This bootstraps the framework and gets it ready for use, then it
  44. | will load up this application so that we can run it and send
  45. | the responses back to the browser and delight our users.
  46. |
  47. */
  48.  
  49. $app = require_once __DIR__.'/../bootstrap/app.php';
  50.  
  51. /*
  52. |--------------------------------------------------------------------------
  53. | Run The Application
  54. |--------------------------------------------------------------------------
  55. |
  56. | Once we have the application, we can handle the incoming request
  57. | through the kernel, and send the associated response back to
  58. | the client's browser allowing them to enjoy the creative
  59. | and wonderful application we have prepared for them.
  60. |
  61. */
  62.  
  63. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
  64.  
  65. $response = $kernel->handle(
  66. $request = Illuminate\Http\Request::capture()
  67. );
  68.  
  69. $response->send();
  70.  
  71. $kernel->terminate($request, $response);
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement