
1. `LuaSandboxFunction::__construct`에서 `allowStatic` 파라미터의 기본값은 `false`입니다.
2. `allowStatic` 파라미터를 `true`로 설정했을 때, 함수 내부에서 static 변수를 사용할 수 있습니다.
3. `allowStatic` 파라미터를 `false`로 설정했을 때, 함수 내부에서 static 변수를 사용할 수 없습니다.
`LuaSandboxFunction::__construct`의 `allowStatic` 파라미터를 `true`로 설정하면, 함수 내부에서 static 변수를 사용할 수 있습니다. 이때, static 변수는 함수가 호출될 때마다 초기화되지 않습니다.
`LuaSandboxFunction::__construct`의 `allowStatic` 파라미터를 `false`로 설정하면, 함수 내부에서 static 변수를 사용할 수 없습니다. 이때, static 변수는 함수가 호출될 때마다 초기화됩니다.
`LuaSandboxFunction::__construct`의 `allowStatic` 파라미터를 `true`로 설정하는 예제입니다.
#hostingforum.kr
php
$lua = new LuaSandbox();
$lua->preload('math');
$lua->openlibs();
$func = $lua->newFunction('function foo() return math.sin(3.14) end', ['allowStatic' => true]);
$func->call();
`LuaSandboxFunction::__construct`의 `allowStatic` 파라미터를 `false`로 설정하는 예제입니다.
#hostingforum.kr
php
$lua = new LuaSandbox();
$lua->preload('math');
$lua->openlibs();
$func = $lua->newFunction('function foo() return math.sin(3.14) end', ['allowStatic' => false]);
$func->call();
위 예제에서 `allowStatic` 파라미터를 `true`로 설정하면, `math.sin(3.14)`의 결과가 반환됩니다. 반면, `allowStatic` 파라미터를 `false`로 설정하면, 에러가 발생합니다.
2025-04-05 21:28