Turba_Driver::searchDuplicates PHP Метод

searchDuplicates() публичный Метод

Duplicates are determined by comparing email and name or last name and first name values.
public searchDuplicates ( ) : array
Результат array A hash with the following format: array('name' => array('John Doe' => Turba_List, ...), ...)
    public function searchDuplicates()
    {
        return array();
    }

Usage Example

Пример #1
0
 /**
  * Searches the current address book for duplicate entries.
  *
  * Duplicates are determined by comparing email and name or last name and
  * first name values.
  *
  * @return array  A hash with the following format:
  * <code>
  * array('name' => array('John Doe' => Turba_List, ...), ...)
  * </code>
  * @throws Turba_Exception
  */
 public function searchDuplicates()
 {
     return $this->_driver->searchDuplicates();
 }