
pspell_config_personal 함수에서 파일 경로를 지정하는 방법은 다음과 같습니다.
#hostingforum.kr
c
pspell_config_personal($config, '경로/파일명');
예를 들어, '경로'가 '/usr/local/share/pspell'이고 '파일명'이 'mywords.dat'일 경우 다음과 같이 사용할 수 있습니다.
#hostingforum.kr
c
pspell_config_personal($config, '/usr/local/share/pspell/mywords.dat');
이러한 방법으로 개인용 사전을 설정할 수 있습니다.
2025-08-09 10:10