Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:101065 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 7810 invoked from network); 5 Nov 2017 13:51:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 5 Nov 2017 13:51:06 -0000 Authentication-Results: pb1.pair.com header.from=peterkokot@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=peterkokot@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.173 as permitted sender) X-PHP-List-Original-Sender: peterkokot@gmail.com X-Host-Fingerprint: 74.125.82.173 mail-ot0-f173.google.com Received: from [74.125.82.173] ([74.125.82.173:55836] helo=mail-ot0-f173.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B0/E6-09857-8471FF95 for ; Sun, 05 Nov 2017 08:51:05 -0500 Received: by mail-ot0-f173.google.com with SMTP id u41so6260493otf.12 for ; Sun, 05 Nov 2017 05:51:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=b/lhrIqKtjIoXtmrcS0IuQrIG5NGXHxSKrQlx7uYQY8=; b=F+GZklpjS0s1fQMpwy5hmztwQxH3vUybS30bWj95V448ywRuzjOFWLyYZCL0esT4Hr H9iFBj07Yqo/yxT9wXKxfmOUQhDjXC4b2oASg7LBq6M8RFGjVTuyi4miIYmrBuLPJoG5 RnS9GT9/BSQSQSAMJQe9mG4lXX33AZokWISQkKN88aYCqKYAyz0/vsIZO3dQBBqgDUx9 j2DWmaqk2rMQ/xpagX/E12vGbLnWNLKYYF5YFQ9EveV6iaU+tGH7qNXu/jat3sWl1vcg ctG2870P1Oam0GA8uMZLlL4hwYYqctdeytf5knwKnViX5B8/xvMS7ewrr+1r++N1akXS d6TA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=b/lhrIqKtjIoXtmrcS0IuQrIG5NGXHxSKrQlx7uYQY8=; b=YiZ13V7MM2X3fLI0xLblPHa9Hn5OQaNLkr+NBVnMNGg+56GdFqxW8y0aOZe9eDhbiZ nZSHrL5IHE9Mn+NVXYwZ+Oi84qEa18Mdn8cDgNWLTQa0zyydpCCvoDDUwFaF+DhBvz+9 VIUaZIzAsBzMSoa+5l7WVeNSMku6m/cuVpPctqWRbtwVmDAEOORrfxv9dofBab8TQ/8i Ho9mwXkaTyFHRcQlVnQBpKdagYt8Pd72HW0E13Y9dRWC+0fjjS99UXpAfszG7tyDvCvy DI1SrsyW81S9HHa01uikpdK35R8K8pPZuN9lTvHBmlGTof43sKOpNDoCHCK0rRLpRyZn 9TgA== X-Gm-Message-State: AJaThX5C+ckKgk8atYiY0d9tbjA7ijV0RlRUHzOMkGN22ZaoV43J+xcL 0dJ/Uqb8nE0HaALZC+4DQVJ8lKqlihfPOJpHg6E= X-Google-Smtp-Source: ABhQp+SRGGcJ9orIxmLRVAUHs/pDjRLj5DhX1tm054m/jxR9srcSGPnTJi2+4AJN3PVE2C26ZYTh7aUa+dUX4qdSTXI= X-Received: by 10.157.61.2 with SMTP id a2mr3017409otc.271.1509889862031; Sun, 05 Nov 2017 05:51:02 -0800 (PST) MIME-Version: 1.0 Received: by 10.74.148.202 with HTTP; Sun, 5 Nov 2017 05:51:01 -0800 (PST) In-Reply-To: <9331841e-ea9a-652b-3b54-5dc24dbd273b@gmail.com> References: <9331841e-ea9a-652b-3b54-5dc24dbd273b@gmail.com> Date: Sun, 5 Nov 2017 14:51:01 +0100 Message-ID: To: Stanislav Malyshev Cc: Andreas Treichel , internals@lists.php.net Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] Proposal: Rename image functions From: peterkokot@gmail.com (Peter Kokot) Hello all, correct me if I'm wrong, but wouldn't be a good practice to follow the currently set coding standards? https://github.com/php/php-src/blob/master/CODING_STANDARDS Good: 'foo_select_bar' Bad: 'fooinsertbaz' And therefore making aliases for all inconsistently named functions in the core for the next PHP version (and furthermore removing other conventions in future versions)? My preference is definitely camelCase but that would break all other prevailing naming of functions with underscores...