설치

If you have the libraries needed add the --with-pspell[=dir] option when compiling PHP.

Note: Note to Win32 Users

이 확장이 동작하려면, DLL 파일이 윈도우 시스템 PATH에 존재하여야 합니다. 이를 위한 정보는, "윈도우에서 PHP 디렉토리를 PATH에 추가하기"에 관한 FAQ을 참고하십시오. DLL 파일을 PHP 폴더에서 윈도우 시스템 디렉토리로 복사하여도 작동하지만(시스템 디렉토리는 기본적으로 시스템 PATH에 존재하기 때문), 권장하지 않습니다. 이 확장은 다음 파일이 PATH 상에 존재하여야 합니다: aspell-15.dll from the bin folder of the aspell installation.

Win32 support is available only in PHP 4.3.3 and later versions. Also, at least aspell version 0.50 is required.

add a note add a note

User Contributed Notes 2 notes

up
1
chapman at wtinds dot com
4 years ago
If you are compiling v7.3.x under CentOS 8, you will need to first enable PowerTools, then install aspell-devel - otherwise aspell-devel will not be available to you:

sudo dnf config-manager --set-enabled PowerTools
sudo dnf install -y aspell-devel

Then in your configure line, just use:

--with-pspell

NOT

--with-pspell=/some/dir
up
-12
juliusdavies at gmail dot com
15 years ago
Aspell + PHP + Windows was giving me just crazy crashes with this simple test file:

<?php
$pspell_link
= pspell_new("en");
?>

Running "php -f test.php" directly from a DOS prompt shed some light:

----------------
The file "C:\Program Files\Aspell\data/iso8859-1.dat" can not be opened for reading.pell\dict/en-only.rws:
----------------

To fix it I needed to "dos2unix" all the files in Aspell's C:\Program Files\Aspell\data\ directory.  (Convert them from CRLF to just LF line endings).
To Top