Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:85793 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 91299 invoked from network); 13 Apr 2015 22:24:31 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Apr 2015 22:24:31 -0000 Authentication-Results: pb1.pair.com header.from=morrison.levi@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=morrison.levi@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.216.44 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.216.44 mail-vn0-f44.google.com Received: from [209.85.216.44] ([209.85.216.44:36814] helo=mail-vn0-f44.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E4/17-41712-C124C255 for ; Mon, 13 Apr 2015 18:24:29 -0400 Received: by vnbf62 with SMTP id f62so24607033vnb.3 for ; Mon, 13 Apr 2015 15:24:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=jWcyxCZd1A3j1cXAt6j8A7J8cD9ImmgQ7znkO0OUPOM=; b=k8I7NIRyOOlgnHsSVdOGptbSYHBddQb/j3G/wsFOdioRdLaqvInfszlim44yGUquWp 1CcilHb1/LXLc0DJE3Sn+N2gclt9DmIrfIcdVXIY6GuM4/hUR2N5yQhr/nmeCas74BjA C04aKfrFnsrkKHhUgU0Sci4CCv/7uFlxNAQaipOE2LZOYDzNiRGmQEL5iupVNBxQ2p78 yShM61z0dwIpSyZYQVdmGiMFUxB2WW2ZVfAJvsVO2T8X+5wGhJBPivd0V+lrCZEiBcdU Jbeozil0V7nmu9tJwl5afGRgvynn2wSPWbPJDTbWGflP/lZSSC+6CzR28+tM48KRSU/e Rqmg== MIME-Version: 1.0 X-Received: by 10.202.212.86 with SMTP id l83mr9038156oig.50.1428963865379; Mon, 13 Apr 2015 15:24:25 -0700 (PDT) Sender: morrison.levi@gmail.com Received: by 10.76.93.136 with HTTP; Mon, 13 Apr 2015 15:24:25 -0700 (PDT) In-Reply-To: References: Date: Mon, 13 Apr 2015 16:24:25 -0600 X-Google-Sender-Auth: rc_csUhjtyz8Uw9Cy0bbPX5Zr-Y Message-ID: To: Johannes Ott Cc: internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] New RFC draft "static class constructor" From: levim@php.net (Levi Morrison) On Mon, Apr 13, 2015 at 7:37 AM, Johannes Ott wrote: > Hi, > > finally I managed to do my first RFC draft. > > https://wiki.php.net/rfc/static_class_constructor > > I hope I have done everything correct so far and I'm looking forward to > your feedback on it. The static constructor cannot be called by the user, which means it shouldn't even register as a function. Additionally, it is always private. Given these constraints I would prefer to change this syntax: class Config { private static $arIni; private static function __static() { $self::$arIni = parse_ini_file('config.ini'); } } To this (borrowed from Java): class Config { private static $arIni; static { $self::$arIni = parse_ini_file('config.ini'); } } I do not see any reason to do the former unless the latter has conflicts in the parser, which I don't think it would.