Services_Yahoo
[ class tree: Services_Yahoo ] [ index: Services_Yahoo ] [ all elements ]

Source for file termExtraction.php

Documentation is available at termExtraction.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  3.  
  4. /**
  5.  * Term Extraction service class
  6.  *
  7.  * Copyright 2005-2006 Martin Jansen
  8.  *
  9.  * Licensed under the Apache License, Version 2.0 (the "License");
  10.  * you may not use this file except in compliance with the License.
  11.  * You may obtain a copy of the License at
  12.  *
  13.  *     http://www.apache.org/licenses/LICENSE-2.0
  14.  *
  15.  * Unless required by applicable law or agreed to in writing, software
  16.  * distributed under the License is distributed on an "AS IS" BASIS,
  17.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  * See the License for the specific language governing permissions and
  19.  * limitations under the License.
  20.  *
  21.  * @category   Services
  22.  * @package    Services_Yahoo
  23.  * @author     Martin Jansen <mj@php.net>
  24.  * @copyright  2005-2006 Martin Jansen
  25.  * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License, Version 2.0
  26.  * @version    CVS: $Id: termExtraction.php,v 1.2 2006/10/02 12:53:33 mj Exp $
  27.  * @link       http://pear.php.net/package/Services_Yahoo
  28.  */
  29.  
  30. require_once "AbstractContentAnalysis.php";
  31.  
  32. /**
  33.  * Term Extraction service class
  34.  *
  35.  * This class implements an interface to Yahoo's Term Extraction service
  36.  * by using the Yahoo API.
  37.  *
  38.  * @category   Services
  39.  * @package    Services_Yahoo
  40.  * @author     Martin Jansen <mj@php.net>
  41.  * @copyright  2005-2006 Martin Jansen
  42.  * @license    http://www.apache.org/licenses/LICENSE-2.0  Apache License, Version 2.0
  43.  * @version    CVS: $Id: termExtraction.php,v 1.2 2006/10/02 12:53:33 mj Exp $
  44.  * @link       http://pear.php.net/package/Services_Yahoo
  45.  * @link       http://developer.yahoo.net/content/V1/termExtraction.html
  46.  */
  47.  
  48.     protected $requestURL = "http://api.search.yahoo.com/ContentAnalysisService/V1/termExtraction";
  49.  
  50.     /**
  51.      * Set the context to extract terms from.
  52.      *
  53.      * Note: One must not encode the context to UTF-8 before passing it
  54.      * to this method.  The encoding will be done automatically.
  55.      *
  56.      * @access public
  57.      * @param  string Context to extract terms from
  58.      */
  59.     public function setContext($context)
  60.     {
  61.         $this->parameters['context'utf8_encode($context);
  62.     }
  63. }

Documentation generated on Fri, 20 Apr 2007 14:30:09 -0400 by phpDocumentor 1.3.0. PEAR Logo Copyright © PHP Group 2004.