Voting

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

The Note You're Voting On

CertaiN
11 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