芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/public_html/wp-content/plugins/mailpoet/lib/Util/Installation.php
settings = $settings; } public function isNewInstallation() { $installedAt = $this->settings->get('installed_at'); if (is_null($installedAt)) { return true; } $installedAt = Carbon::createFromTimestamp(strtotime($installedAt)); $currentTime = Carbon::now()->millisecond(0); return $currentTime->diffInDays($installedAt) <= self::NEW_INSTALLATION_DAYS_LIMIT; } }