From 63d89817b251a1ee12c6cf51ad1d2ffe15cdee49 Mon Sep 17 00:00:00 2001 From: Takuya Aramaki Date: Mon, 3 Feb 2025 20:20:08 +0900 Subject: [PATCH] =?UTF-8?q?=E8=AA=A4=E8=A8=B3=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit short_open_tag=0,1 の2パターンしかないのに、 3パターンあるような訳になっていたのを修正 --- appendices/migration74/incompatible.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/appendices/migration74/incompatible.xml b/appendices/migration74/incompatible.xml index 04b21a8cc7..2c80a6bac6 100644 --- a/appendices/migration74/incompatible.xml +++ b/appendices/migration74/incompatible.xml @@ -42,12 +42,11 @@ ファイルの最後の (改行が最後に付かない) <?php - タグは、PHPタグの開始タグとして解釈されるようになりました。以前は、短い形式の開始タグ <? の後にリテラル + タグは、PHPタグの開始タグとして解釈されるようになりました。以前は、短縮型の開始タグ <? の後にリテラル php - を続けたものとして解釈されるか、(short_open_tag=1 - の場合は) 文法エラー になるか、(short_open_tag=0 - の場合は) <?php - というリテラルとして解釈されていました。 + を続けたものとして解釈された結果文法エラーになる (short_open_tag=1 + の場合) か、<?php という文字列リテラルとして解釈されていました (short_open_tag=0 + の場合) 。