Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can not make clickable extracted words with this function:

$text = $curTemplate['name'];
function extract_keywords($str, $minWordLen = 4, $minWordOccurrences = 1, $asArray = false)
{
    function keyword_count_sort($first, $sec)
    {
        return $sec[1] - $first[1];
    }
    $str = preg_replace('/[^\p{L}0-9 ]/', ' ', $str);
    $str = trim(preg_replace('/\s+/', ' ', $str));

    $words = explode(' ', $str);
    $keywords = array();
    while(($c_word = array_shift($words)) !== null)
    {
        if(strlen($c_word) < $minWordLen) continue;

        $c_word = strtolower($c_word);
        if(array_key_exists($c_word, $keywords)) $keywords[$c_word][1]++;
        else $keywords[$c_word] = array($c_word, 1);
    }
    usort($keywords, 'keyword_count_sort');

    $final_keywords = array();
    foreach($keywords as $keyword_det)
    {
        if($keyword_det[1] < $minWordOccurrences) break;
        array_push($final_keywords, $keyword_det[0]);
    }
    return $asArray ? $final_keywords : implode(', ', $final_keywords);
}
//How to use

//Basic lorem ipsum text to extract the keywords
$text = "stackoverflow a language independent collaboratively edited question and answer site for programmers";

echo extract_keywords($text);

I would like the words in this way:

<a href="http://website.com/search.php?search=<?php echo extract_keywords($text); ?>"><?php echo extract_keywords($text); ?></a>

but don't work

in this way work but without the keyword in the link :( why????

<a href="http://website.com/search.php?search=NO KEY"><?php echo extract_keywords($text); ?></a>
share|improve this question
What exactly are you getting in your generated HTML? What does var_dump(extract_keywords($test)) show you? – Marc B Sep 20 '12 at 21:36
i think the solution is here: – Vincenzo Piromalli Sep 20 '12 at 21:41
i think the solution is here return $asArray ? $final_keywords : implode(', ', $final_keywords); <--------------- in final_keywords how to add the <a href="" parameter? – Vincenzo Piromalli Sep 20 '12 at 21:42
are you looking to make each individual keyword a different link? then either build the html inside your function, or always return an array. – Marc B Sep 20 '12 at 21:51
yes i want individual keywords with a differetn link please post here the solution if you have it :( please :) – Vincenzo Piromalli Sep 20 '12 at 21:57
show 2 more comments

1 Answer

up vote 1 down vote accepted

As mentioned:

$keywords = extract_keywords($text, 4, 1, true);

foreach($keywords as $k => $keyword){
    echo '<a href="http://website.com/search.php?search=' .  $keyword . '">' . $keyword . '</a>' . ($k != (count($keywords) - 1) ? ',' : '');
}
share|improve this answer
Thank you @trickyzter :) Now work! but how to separate the individual keywords with a comma (,) – Vincenzo Piromalli Sep 20 '12 at 22:23
See update above. Please mark answer as correct if this solves your problem. ;) – trickyzter Sep 20 '12 at 22:32
Ok! Than you very much! You can test it here: apps.facebook.com/cover-maker – Vincenzo Piromalli Sep 20 '12 at 22:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.