Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:104946 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 13429 invoked from network); 25 Mar 2019 21:25:02 -0000 Received: from unknown (HELO mail-oi1-f179.google.com) (209.85.167.179) by pb1.pair.com with SMTP; 25 Mar 2019 21:25:02 -0000 Received: by mail-oi1-f179.google.com with SMTP id w137so7768237oiw.5 for ; Mon, 25 Mar 2019 11:18:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=0R36gpV+IFeJ8L2FDVbShKf9QojGo/WbumzH7DOm/pY=; b=P88grm1tQ9rI/GM/2WiaZB4rsk5J4Jh36f5Agl5hh9NYV8YyEU/uLM8bcEesFDgLRV 7Ji6lYaE86E781+GN6cLoUVpCCGYl5Sx2xOr5IXhyy2e6KkfOJZSuvMJzSz2DnbFbk+L 9KMqu/6tov8pyamjxMaHRgmHOVT0FzC/cc/XVW2WDrDzWW0UvQbCWzfvRZ7nYgzn8w8/ bBJKaGCYV6xcn3tDm8k1cHNqVmeSWoJY7RwbMXXp/bqOP4JKOvcyJrZX2YahNF3qETSP Eap/+8mwagderFxVuP4Q4GrG0gt4RLXUJfN81NhdbegRGnsAfBQY6bsmyMtYM4Pz7aPn OKwQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=0R36gpV+IFeJ8L2FDVbShKf9QojGo/WbumzH7DOm/pY=; b=Sg/5JsUcEMHM52K72H5rxOJ+TQU7xVqzcNRA2mck7IMDkNayhhuK4jhLt0IDxJczcj vZzWB91ZPkhn6AYddbtlL1ypZKqYn4Bd58z39SEZHLZ/q8JWDMkqeaJCrILk76ooypIu aJuOOU27glFv0OPV18o2Zsc+bPqYxyKEcW2G6AMHDrhBDAVzK/AI6x8PIKFjO1Amf8D2 rd9655jfChwICGDMLUEnx0hAY5RS9P4hGCECQ7fqQ1G8246DUctAhcRCVKAk1pGWGRnv c4/GCdfZ2rjxv7SAOkapK2vLSFi5vVhNDmAqTM032GE0iTixbOvl8mvA5oggTOZi0j/X l0jA== X-Gm-Message-State: APjAAAW81dWWBiDC7HJ18FfzdtiJGVt+FSSdYQTT/5Pxj/o/ysr3ev0O FOxFo0jCCrmlBVLpILIU1J0aWd9RTCi8MuT+l6w= X-Google-Smtp-Source: APXvYqxmbcMB227BrWYxPBQjSDgNd5u4kV4q++Qxtgpno+Uqju4fRNiRbMuGWY6qIRfcwNRmCOl3r/ImvWJywU9SqvI= X-Received: by 2002:aca:318a:: with SMTP id x132mr12908186oix.172.1553537893428; Mon, 25 Mar 2019 11:18:13 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Mon, 25 Mar 2019 19:18:00 +0100 Message-ID: To: "G. P. B." Cc: PHP internals Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] [RFC] Deprecate PHP's short open tags From: peterkokot@gmail.com (Peter Kokot) Hello, On Mon, 25 Mar 2019 at 14:02, G. P. B. wrote: > > Hello internals, > > I would like to start the discussion about the deprecation of PHP's short > open tags: > https://wiki.php.net/rfc/deprecate_php_short_tags > > As this is my first RFC all feedback is welcome. > However, due to the nature of the RFC and it being self-contained, the > planned date to > beginning voting this RFC is after the mandatory two weeks discussion > period and would > start on Monday the 8th of April (2019-04-08) and be open for two weeks > until Monday the > 22nd of April (2019-04-22). > > Best regards > > George P. Banyard Short opening tags are by default disabled in the php.ini settings on the majority of PHP installations. This means that writing modern PHP code shouldn't use these anymore because the code isn't properly portable or let's say it is less portable. On top of all removing these would also simplify things a bit - one opening tag for the same thing less. Also, a quick opinion based poll has been done in the PHP.earth Facebook group [1] with ~96% in favour of the removal. So, +1 for removing these and simplify things more. There are only two tags really needed in PHP templating engines