Swish::__construct

(PECL swish >= 0.1.0)

Swish::__constructConstruct a Swish object

˵��

Swish::__construct ( string $index_names ) : void
Warning

�˺�����ʵ�����ġ��˺����ı��󣬰������Ƽ�������ĵ���������δ���� PHP �����汾��δ֪ͨ�ͱ��޸ġ�ʹ�ñ����������Ե� ��

����

index_names

The list of index files separated by spaces.

����ֵ

û�з���ֵ��

�����쳣

Throws SwishException on error.

����

Example #1 A Swish::__construct() example

<?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)