PHP Classes

common words list

Recommend this page to a friend!

      Automatic Site Keyword Generator  >  All threads  >  common words list  >  (Un) Subscribe thread alerts  
Subject:common words list
Summary:missing methods to change the common words
Messages:3
Author:kidata
Date:2009-02-06 11:23:33
Update:2009-04-06 08:24:27
 

  1. common words list   Reply   Report abuse  
Picture of kidata kidata - 2009-02-06 11:23:33
I think the hard coded common word list at line 135 should be moved to the class vars and there should be get/set-methods for easy modifying the common word list for other languages than english, without changing the class.

how about that?

class autokeyword {
//...
var $commons = array("able", "about", ...
//...

function parse_words()
{
$common = $this->commons;
// ...

function get_common_words()
{
return $this->commons;
}

function set_common_words($wordlist)
{
if (is_array($wordlist))
$this->commons = $wordlist;
else
return false;
}

function add_common_words($wordlist)
{
if (is_array($wordlist))
$this->commons = array_merge($this->commons, $wordlist);
else
return false;
}

  2. Re: common words list   Reply   Report abuse  
Picture of ben ben - 2009-04-05 09:02:24 - In reply to message 1 from kidata
can u upload your full mod to see how it work..
i can not make this funcgion work with UTF-8
=
eg: "Chuyện chưa từng có: Lia đầu chó xuống sân Hàng Đẫy
Trong trận đấu giữa Thể Công gặp HN. ACB tại tứ kết Cúp Quốc gia 2009 trên sân Hàng Đẫy chiều qua, bỗng bất ngờ xuất hiện hai chiếc đầu chó được ném xuống sân khi trận đấu đang diễn ra.
Chiếc đầu chó thứ nhất nằm trên đường pitch
Hai chiếc đầu chó, một chiếc nằm trên đường pít và một chiếc nằm trên mặt cỏ sát đường biên dọc được xác định là của một nhóm CĐV HN.ACB, lia từ trên khán đài A xuống sân. Hành động này được coi là một sự quá khích nhằm ám chỉ, xúc phạm đến đội bóng Thể Công (Tên "TC" có thể suy ra là "Thủ Chó""

  3. Re: common words list   Reply   Report abuse  
Picture of kidata kidata - 2009-04-06 08:24:27 - In reply to message 2 from ben
Hi,

i've uploaded the whole class to:
megaupload.com/?d=GSBBGQSM
(don't know how to put that file here at phpclasses.org)

HTH.