ackintosh / toumi

An useful tool to "include" LEGACY php files without side-effect.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Toumi

A library for including legacy php file.

Build Status

Usage

legacy.php

<?php
function hoge($arg)
{
    return 'hoge' . $arg;
}

somefunction(1234);

function fuga()
{
    $f = function () { echo 'fuga'; };
    call_user_func($f);
}

var_dump(hoge('hogehoge'));
exit;
<?php
// Only function declaration is included.
\Ackintosh\Toumi::load('legacy.php');

class LegacyTest extends PHPUnit_Framework_TestCase
{
    /**
     * @test
     */
    public function hoge()
    {
        $this->assertSame('hogefuga', hoge('fuga'));
    }
}

Author

Akihito Nakano

About

An useful tool to "include" LEGACY php files without side-effect.

License:MIT License


Languages

Language:PHP 100.0%