AppInit.php 290 B

1234567891011121314
  1. <?php
  2. namespace app\service;
  3. use app\service\pay_user\PayUser;
  4. use think\Validate;
  5. class AppInit{
  6. public function run($params){
  7. if(!IS_CLI){
  8. ini_set('max_execution_time',30);
  9. }
  10. //\PhpOffice\PhpSpreadsheet\Settings::setCache(cache_simple());
  11. }
  12. }