Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:20044 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 20349 invoked by uid 1010); 16 Nov 2005 01:38:11 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 20334 invoked from network); 16 Nov 2005 01:38:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Nov 2005 01:38:11 -0000 X-Host-Fingerprint: 69.12.155.130 69-12-155-130.dsl.static.sonic.net Linux 2.4/2.6 Received: from ([69.12.155.130:4911] helo=pigeon.alphaweb.net) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id B1/CA-07637-28D8A734 for ; Tue, 15 Nov 2005 20:38:10 -0500 Received: from localhost ([127.0.0.1] helo=peiscg33m) by pigeon.alphaweb.net with smtp (Exim 4.10) id 1EcBTX-0003zq-00; Tue, 15 Nov 2005 16:48:35 -0800 Message-ID: <004601c5ea4e$6424a900$5c8be5a9@ohr.berkeley.edu> Reply-To: "Sara Golemon" To: Cc: References: <1132089414.7822.14.camel@localhost.localdomain> <4e89b4260511151607l3130babes3bff25f450a3cf2e@mail.gmail.com> Date: Tue, 15 Nov 2005 17:38:04 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Subject: Re: [PHP-DEV] Overriding Default Functions From: pollita@php.net ("Sara Golemon") Specifically, you want to enable the (under-documented) runkit.internal_override INI option. It's mentioned on the reference page, but with no explanation of what it does. I need to make a language-snippet for that at some point.... This was added in version 0.6 (prior versions could only override user-defined functions/methods). If you enable this option (PHP_INI_SYSTEM only) you can use runkit_function_redefine() to replace the builtin time() with something else. -Sara ----- Original Message ----- From: "Wez Furlong" Newsgroups: php.internals To: Cc: Sent: Tuesday, November 15, 2005 4:07 PM Subject: Re: [PHP-DEV] Overriding Default Functions I think runkit is what you're looking for. http://pecl.php.net/packages/runkit --Wez. On 11/15/05, Alan Cox wrote: > Hello - > Is there a way to build an extension that overrides the default > behavior of a built-in PHP function? Would it be possible to add an > extension that removes a PHP function, so that I could redefine it in my > PHP code? > > What I want to do is override the time calculations. We are running > unit tests on a testing server that are dependent on time. For > instance, there is one behavior before the 15th of the month and another > one on or after the 15th. I'm not able to change the system time, since > this testing server is used by a lot of people. What I'd like to be > able to do is load a module in the unit test that makes it so that a > custom time() function is used. This time() function wouldn't look at > the system clock for the time. > > Thanks for your help. > Alan > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >