1.0.0 2023-12-09 09:49 UTC

This package is auto-updated.

Last update: 2025-04-06 23:18:42 UTC


README

composer require krzysztofzylka/sandbox

Create sandbox instance

$sandbox = new \Krzysztofzylka\Sandbox\Sandbox(null, '<?php echo "a" ?>');
$sandbox->setTimeLimit(6);
$sandbox->setMemoryLimit(64);
echo $sandbox->run();