Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:33223 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 17887 invoked by uid 1010); 17 Nov 2007 21:23:20 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 17872 invoked from network); 17 Nov 2007 21:23:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Nov 2007 21:23:20 -0000 Authentication-Results: pb1.pair.com smtp.mail=chx1975@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=chx1975@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.146.182 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: chx1975@gmail.com X-Host-Fingerprint: 209.85.146.182 wa-out-1112.google.com Received: from [209.85.146.182] ([209.85.146.182:37390] helo=wa-out-1112.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 8E/50-14070-7CB5F374 for ; Sat, 17 Nov 2007 16:23:19 -0500 Received: by wa-out-1112.google.com with SMTP id l24so1592188waf for ; Sat, 17 Nov 2007 13:23:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=dy7XU6okovUC6K+rIY1vhSdIUJZ9FVvEMwF8whu50d0=; b=TA4Qsbj8v4KdFFBpOGRDfR8j7YIOQjwlDkvIvMwry33ICa8qzcGVroNYHZGUrHQ1me5ODa0kqH1hlfKPrXmdcKBhArn+7GstogC//W4Dx2aJT6z4FwRl8WiOzvPJchIdyStSvMT4yqo9e21jftzCBlWj7m8D3scHINVRHcE9w/U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=HXB4tmyAHpK1bQdtQueGdYM5Dx4yjVp4qdxE+8hs2/wCV8/eo9YAM+NhXMGpSSN5uwGgIWohjJw4kRn8l/sm3I5h5VfQ4+of2aiK9XV9hwbDk8SAtq2ASjUB9U3SENIsZ1KvbBeamQZ0LV5x2xC8g/T+0HaqHhCOVxKtt1jDahw= Received: by 10.114.38.2 with SMTP id l2mr1064156wal.1195334596341; Sat, 17 Nov 2007 13:23:16 -0800 (PST) Received: by 10.114.149.6 with HTTP; Sat, 17 Nov 2007 13:23:16 -0800 (PST) Message-ID: <7e270cea0711171323g8c5e7c0m1ae47115522c6bb6@mail.gmail.com> Date: Sat, 17 Nov 2007 23:23:16 +0200 Sender: chx1975@gmail.com To: "Brian Moon" Cc: internals@lists.php.net In-Reply-To: <473F51D1.1020602@dealnews.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7e270cea0711170603o69936b40gfd8e0d386513c654@mail.gmail.com> <473F51D1.1020602@dealnews.com> X-Google-Sender-Auth: 28a57d20ca1835f9 Subject: Re: [PHP-DEV] Bring back call-time pass-by-reference From: karoly@negyesi.net ("Karoly Negyesi") Dear Brian, Say, you have a CMS which generally calls some kind of functions and some of them might need to modify one array the other needs to modify two arrays... Currently you need to wrap these into a "arguments" array otherwise func_get_args will butcher your references. Regards, NK