Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:35438 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 72934 invoked by uid 1010); 13 Feb 2008 10:05:34 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 72919 invoked from network); 13 Feb 2008 10:05:34 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Feb 2008 10:05:34 -0000 Authentication-Results: pb1.pair.com smtp.mail=felipensp@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=felipensp@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 64.233.178.246 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: felipensp@gmail.com X-Host-Fingerprint: 64.233.178.246 hs-out-0708.google.com Linux 2.4/2.6 Received: from [64.233.178.246] ([64.233.178.246:14425] helo=hs-out-0708.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 5C/13-42926-DE0C2B74 for ; Wed, 13 Feb 2008 05:05:33 -0500 Received: by hs-out-0708.google.com with SMTP id l65so422890hsc.7 for ; Wed, 13 Feb 2008 02:05:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=rfes5Sr2duu3JWcndKrsu2RXGEUYSSeyZTCVvlMpdm8=; b=PKFdVlRei1edVcI/BGp2LxutQqz5CuQtQFjX8aaXzoF1d0HqTk15uQVI/HJ/LcebCSL4cbRKonpIKjbpnlxc+kfUJHrsoJv+ChXBJXNTcTIOk0Xo0/ylo06s7Mq//Px6JPC0XkB83AlUz6P2e4fDiD0tp+nbF1sZyXiz9UkozjU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=AlBztLfOKz9XpPDgs6UTloJA2eIQN7ex0ePoChQClFBBNx/Q+zC2YD9pnKaD4aLrT/PujB5jOC1Q1nDczaLFpuXgv4MZZZN8QVSqWIRFUqE5oVMQwrG99Ncto/L80RFOb3gJTuslfqRyTEIMjxFDnL8+jmpsDhMZID32RjYk2Lg= Received: by 10.100.165.13 with SMTP id n13mr3455146ane.85.1202897131154; Wed, 13 Feb 2008 02:05:31 -0800 (PST) Received: from ?10.0.18.8? ( [157.86.206.62]) by mx.google.com with ESMTPS id w43sm2427984hsa.3.2008.02.13.02.05.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 13 Feb 2008 02:05:30 -0800 (PST) To: Pierre Joye Cc: internals@lists.php.net In-Reply-To: References: <1202861045.5872.37.camel@pena> <1202868491.5872.53.camel@pena> Content-Type: text/plain; charset=utf-8 Date: Wed, 13 Feb 2008 08:05:18 -0200 Message-ID: <1202897118.5384.5.camel@felipe> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] Math functions (new parameter parsing) From: felipensp@gmail.com (Felipe Pena) Em Qua, 2008-02-13 às 09:47 +0100, Pierre Joye escreveu: > I can't test the patch right now but does it change the result or only raises > a notice? It changes the result when a string is given, and issue notice when the string starts with numeric. var_dump(acos("nonsense")); Warning: acos() expects parameter 1 to be double, string given ... NULL var_dump(acos("1000ABC")); Notice: A non well formed numeric value encountered ... float(NAN)