Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:45708 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 37183 invoked from network); 9 Oct 2009 13:21:46 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 9 Oct 2009 13:21:46 -0000 Authentication-Results: pb1.pair.com header.from=samuel.roze@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=samuel.roze@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.218.206 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: samuel.roze@gmail.com X-Host-Fingerprint: 209.85.218.206 mail-bw0-f206.google.com Received: from [209.85.218.206] ([209.85.218.206:63423] helo=mail-bw0-f206.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 42/6B-19113-9E83FCA4 for ; Fri, 09 Oct 2009 09:21:46 -0400 Received: by bwz2 with SMTP id 2so5890119bwz.23 for ; Fri, 09 Oct 2009 06:21:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=vXTA5fXaMt5ruGQjUQFy+25WpoaI5jmOg1baE6Y9h5I=; b=MMO/ha/PIAsT8FQghXRpnAnidPj6VNmQ/8HZVrOmQtmC3FODeLPOLoqGDnslgP2GkW OTq1Dq1gPg5ElYbGVlvaNcF7JxDsl32HcOv+2cWNQ7v2lMRoHMQqVN9JLE/EumaIVYSX 95hBYzt4KSC7t/JZekMD0Y9LhCpiTdpb5LBYc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=YQDhBDHmJ3q3ZVab8KfMM82H2TUnh6sbXPL920O7bvgYYiCzp9HgYCW80DG7zbkewz FFTNO8z10ZjuUi2dFg+KdpjF/6SQYxfr2fXWIWoVY55JYjx737lhKUY7i4AoSnidwt7G Coyz8FZ9U/ZZKAt+KkbE+gBZn4RcX1oJFWTSs= MIME-Version: 1.0 Received: by 10.204.155.79 with SMTP id r15mr2155346bkw.142.1255094498513; Fri, 09 Oct 2009 06:21:38 -0700 (PDT) Date: Fri, 9 Oct 2009 15:21:38 +0200 Message-ID: <18e9608a0910090621r27967eblb9973d7ce882b1c1@mail.gmail.com> To: internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Subject: Configuration in the php.ini file From: samuel.roze@gmail.com (Samuel ROZE) Hi, I wanted to change a parameter in my PDO class, with the fourth PDO::_construct arg. But, I've many projects, which uses PDO, with one "new PDO" per project. The problem is that I have to change the source of every projects... Why isn't there an PDO section in the php.ini file ? For instance: pdo.is_persistent = 1 pdo.fetch_notices = 1 ...and more ! There isn't because nobody developed that or because it is contradicted ? Samuel.