Additional Info |
---|
Type
|
Package ID
live627:polyfill-create_functi
|
First Created
December 01, 2021, 11:26:15 PM
|
Last Updated
December 08, 2022, 06:41:43 AM
|
create_function()
Uncover the grave of create_function()
because some old mods may still use it.
This is for if you lose access to the package manager due to an error from a missing create_function()
:
Subs-CreateFunction.php
into your sources directoryinstall.php
to the board directory and execute it (remember to delete it afterwards!)
add_integration_function(
'integrate_pre_include',
'$sourcedir/Subs-CreateFunction.php
');
Not to worry. It does nothing if the function is already defined. In fact, here, this is the code.
if (!function_exists('create_function'))
{
function create_function($args, $code)
{
return eval(sprintf('return function(%s) {%s};', $args, $code));
}
}
Do whatever you want with this code. Feed it to alligators for all I care.