aspell_new
(PHP 4 <= 4.2.3)
aspell_new — 새 사전을 연다 [deprecated]
설명
int aspell_new
( string $master
[, string $personal
] )
aspell_new()는 새 사전을 열고 다른 aspell 함수에서 쓸수 있도록 연결용 사전 식별자를 반환한다. 에러가 발생하면 FALSE를 반환한다.
Example#1 aspell_new()
<?php
$aspell_link = aspell_new("english");
?>