개발/php
[php] Message: Return type of CI_Session_files_driver::open($save_path, $name) should either be compatible with [duplicate]
효벨
2025. 1. 16. 09:37
728x90
반응형
[php] Message: Return type of CI_Session_files_driver::open($save_path, $name) should either be compatible with [duplicate]
php 8버전과 codeigniter3을 이용하다보면 호환성에 문제가 생깁니다!
그중에 세션쪽이 우선 문제가 되는데요!!
[php] Message: Return type of CI_Session_files_driver::open($save_path, $name) should either be compatible with [duplicate]
위와 같은 문제가 생기면 처리 방법은 간단합니다!
/system/libraries/Session/drivers/Session_files_driver.php
1. 우선 위 경로로 이동해서 파일을 열고
2. 이미지 처럼
open, read, write, close, destroy, gc 함수 바로 위에
#[\ReturnTypeWillChange]
이렇게 선언해주시면 됩니다!
참고하세요!
반응형