Swish::__construct
(no version information, might be only in CVS)
Swish::__construct -- Swish オブジェクトを作成する
説明
void
Swish::__construct ( string string index_names )
警告 |
この関数は、
実験的 なものです。この関数の動作・
名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP
のリリースにおいて変更される可能性があります。
この関数は自己責任で使用してください。 |
パラメータ
index_names
空白で区切られた、インデックスファイルの一覧。
エラー / 例外
エラー時に SwishException をスローします。
例
例 1. Swish::__construct() の例
<?php
try { $swish = new Swish("index1 index2"); } catch (SwishException $e) { echo $e->getMessage(), "\n"; }
foreach ($swish->indexes as $index) { var_dump($index["name"]); var_dump($index["headers"]["Total Words"]); }
?>
|
上の例の出力は、たとえば
以下のようになります。 string(6) "index1"
int(1888)
string(6) "index2"
int(2429) |
|