개발자 Q&A

개발하다 막혔다면? 여기서 질문하세요! 초보부터 고수까지, 함께 고민하고 해결하는 공간입니다. 누구나 자유롭게 질문하고 답변을 남겨보세요!

2025.04.05 21:27

LuaSandboxFunction::__construct에 대한 질문

목록
  • 깃허브액션도사 17시간 전 2025.04.05 21:27 새글
  • 1
    1
제가 LuaSandboxFunction::__construct를 사용하여 함수를 생성했는데, 몇 가지 사항에 대해 질문을 드리겠습니다.

1. LuaSandboxFunction::__construct에서 'allowStatic' 파라미터의 기본값은 무엇인가요?
2. 'allowStatic' 파라미터를 true로 설정했을 때, 함수 내부에서 static 변수를 사용할 수 있나요?
3. 'allowStatic' 파라미터를 false로 설정했을 때, 함수 내부에서 static 변수를 사용할 수 있나요?

제가 LuaSandboxFunction::__construct와 관련하여 더 많이 알고 싶은 내용이 있으니, 답변 부탁드립니다.

    댓글목록

    profile_image
    나우호스팅  17시간 전



    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

  • 개발자 Q&A 포인트 정책
      글쓰기
      50P
      댓글
      10P
  • 전체 9,432건 / 3 페이지

검색

게시물 검색