제목 | $this->include() 에 대한 질문입니다. | ||
---|---|---|---|
카테고리 | CI 4 관련 | ||
글쓴이 | 엘제이 | 작성시각 | 2024/08/07 09:35:26 |
|
|||
아래와 같이 해서 테스트를 해보았습니다. 기존 소스에서 적용이 안되어서요 두번째 인자로 [] 값을 전달했을 때 받는 쪽에서 데이타가 안받아집니다. 데이타를 전달하는 방법이 틀린건지 모르겠네요 ㅠㅠ <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?= $this->include('test/inc/test_include', ['test'=> 'ok']) ?> </body> </html> ///////// include 한 파일 ////////////////// <?php if(isset($test)){ echo "\$test is isset !!"; }else{ echo "wooooo~~"; } ?> |
|||
다음글 | ciboard를 xampp로 설치하여 localhost... (3) | ||
이전글 | CI4 Routes 관련 문 (5) | ||
darkninja
/
2024/08/07 21:23:20 /
추천
0
|
https://stackoverflow.com/questions/66185634/sending-data-to-this-include-view-in-codeigniter-4