Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:41806 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 6632 invoked from network); 10 Nov 2008 11:04:57 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 Nov 2008 11:04:57 -0000 Authentication-Results: pb1.pair.com header.from=thekid@thekid.de; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=thekid@thekid.de; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain thekid.de from 212.227.126.187 cause and error) X-PHP-List-Original-Sender: thekid@thekid.de X-Host-Fingerprint: 212.227.126.187 moutng.kundenserver.de Received: from [212.227.126.187] ([212.227.126.187:60956] helo=moutng.kundenserver.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 1B/40-04934-75518194 for ; Mon, 10 Nov 2008 06:04:56 -0500 Received: from carla (port-92-205-92-109.dynamic.qsc.de [92.205.92.109]) by mrelayeu.kundenserver.de (node=mrelayeu0) with ESMTP (Nemesis) id 0MKwh2-1KzUZf2Y2D-0003X4; Mon, 10 Nov 2008 12:04:52 +0100 Message-ID: To: "Lukas Kahwe Smith" Cc: References: <65BC7F50350543438B699334CC6E5D31@carla> <22445995-374C-4599-A33A-63396E35C84C@pooteeweet.org> In-Reply-To: <22445995-374C-4599-A33A-63396E35C84C@pooteeweet.org> Date: Mon, 10 Nov 2008 12:04:50 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Windows Mail 6.0.6001.18000 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6001.18049 X-Provags-ID: V01U2FsdGVkX1/Lo/qfBMkJXAwPjZ+puhTnHyn0CKJ5BHtFW7x JdercnNA7RYHWeNaw3HD/C0X0th2JgG/8PkqbsrDRj14IOzcgC mzkem21glX+3FgZ6nSb8SkDYf1ONOd6 Subject: Re: [PHP-DEV] sybase_connect() From: thekid@thekid.de ("Timm Friebe") Hi, >> I'd like to add a new optional parameter to sybase_connect() for PHP >> 5.3. If set to TRUE it will force creation of a new link (and works just >> like mysql_connect()'s new_link parameter). >> >> http://sitten-polizei.de/php/sybase-connect-newlink.diff > > > seems like a good idea to have this and i guess there is no other choice > but to stick it at the end of the function parameter list. Comitted to PHP_5_3 and added a NEWS entry. Passing NULL to any of the string parameters to sybase_connect() will make it behave as if the parameter was omitted. The following, for example, are equivalent: sybase_connect() sybase_connect(NULL, NULL, NULL) - Timm