Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

Translation

ja Default locale
en Fallback locale

Messages

These messages are correctly translated into the given locale.

Locale Domain Times used Message ID Message Preview
ja messages 1 menu.homepage ホームページ
ja messages 1 menu.search サーチ
ja messages 1 paginator.previous 前へ
ja messages 1 paginator.next 次へ
ja messages 1 help.app_description これはSymfonyフレームワークで構築された <strong>デモアプリケーション</strong>で、Symfonyアプリケーションを開発する際に推奨される方法を説明するためのものです。
ja messages 1 help.more_information さらに詳しく知りたい場合は, <a href="https://symfony.com/doc">Symfony doc</a>を参照してください。
ja messages 1 help.show_code このボタンをクリックすれば、このページを表示するために使われた <strong>Controller</strong> と <strong>template</strong> のソースコードが表示されます。
ja messages 1 action.show_code コードを見る
ja messages 1 title.source_code このページを表示するのに使われたソースコード
ja messages 1 action.close 閉じる
ja messages 1 title.controller_code Controller コード
ja messages 1 title.twig_template_code Twig テンプレートコード
ja messages 1 menu.rss ブログ投稿RSS
ja messages 1 mit_license MIT ライセンス
Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded

ErrorException

Show exception properties
0 of 0
ErrorException {#2153 #severity: E_NOTICE }
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $record): void
  5.     {
  6.         fwrite($stream, (string) $record->formatted);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.         if ($this->useLocking) {
  2.             // ignoring errors here, there's not much we can do about them
  3.             flock($streamLOCK_EX);
  4.         }
  5.         $this->streamWrite($stream$record);
  6.         if ($this->useLocking) {
  7.             flock($streamLOCK_UN);
  8.         }
  9.     }
  1.             $record $this->processRecord($record);
  2.         }
  3.         $record->formatted $this->getFormatter()->format($record);
  4.         $this->write($record);
  5.         return false === $this->bubble;
  6.     }
  7.     /**
  1.                 }
  2.                 // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3.                 try {
  4.                     $handled true;
  5.                     if (true === $handler->handle(clone $record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function info(string|\Stringable $message, array $context = []): void
  5.     {
  6.         $this->addRecord(Level::Info, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the NOTICE level.
  10.      *
  1.         $this->logger $logger;
  2.     }
  3.     public function __destruct()
  4.     {
  5.         $this->logger->info('Disconnecting');
  6.     }
  7.     public function prepare(string $sql): DriverStatement
  8.     {
  9.         return new Statement(
Connection->__destruct()