PHP Интерфейс Statement, googleads-php-lib

This class is very generic and has no driver-specific implementations. In fact, it wouldn't be possible to have driver-specific classes, since PHP doesn't support multiple inheritance. I.e. you couldn't have MySQLPreparedStatement that extended both the abstract PreparedStatement class and the MySQLStatement class. In Java this isn't a concern since PreparedStatement is an interface, not a class.
Автор: Hans Lellelid ([email protected])
Показать файл Открыть проект Примеры использования интерфейса

Открытые свойства

Свойство Тип Описание
$query string
$values String_ValueMapEntry[]

Открытые методы

Метод Описание
__construct ( $query = null, $values = null )
getNamespace ( ) : string Gets the namesapce of this class
getXsiTypeName ( ) : string Gets the xsi:type name of this class

Описание методов

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

public __construct ( $query = null, $values = null )

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

Gets the namesapce of this class
public getNamespace ( ) : string
Результат string the namespace of this class

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

Gets the xsi:type name of this class
public getXsiTypeName ( ) : string
Результат string the xsi:type name of this class

Описание свойств

$query публичное свойство

public string $query
Результат string

$values публичное свойство

public String_ValueMapEntry[] $values
Результат String_ValueMapEntry[]