Search code examples
phpwindowsrunkit

Where can I get runkit DLL extensions for PHP 5.3+?


That is a quick question: Where can I get PHP's runkit extension for version 5.3+? Manual for it:

http://php.net/manual/en/book.runkit.php

I am searching for DLL version, as I am trying to play with it on Windows. I've searched snaps.php.net, Googled it, but no luck.

Can you point me to the right location or upload it somewhere?


Solution

  • From Runkit: Installation

    A DLL for this PECL extension is currently unavailable. See also the building on Windows section.

    You have to compile the DLL yourself.

    Also see https://hakre.wordpress.com/2010/01/12/pecl-binaries-on-windows/

    Another option would be to use http://antecedent.github.io/patchwork

    Patchwork is a PHP library that makes it possible to redefine user-defined functions and methods at runtime, loosely replicating the functionality runkit_function_redefine in pure PHP 5.3 code, which, among other things, enables you to replace static and private methods with test doubles.