update page now

Voting

: max(nine, one)?
(Example: nine)

The Note You're Voting On

CertaiN
12 years ago
Best wapper:

<?php

function create_lambda($args, $code) {
    static $func;
    if (!isset($func[$args][$code])) {
        $func[$args][$code] = create_function($args, $code);
    }
    return $func[$args][$code];
}

<< Back to user notes page

To Top