|
cubrid_col_sizeGet the number of elements in collection type column using OID Beschreibung
int cubrid_col_size
( resource
$conn_identifier
, string $oid
, string $attr_name
)The cubrid_col_size function is used to get the number of elements in a collection type (set, multiset, sequence) attribute. Parameter-Liste
RückgabewerteNumber of elements, when process is successful.
Changelog
BeispieleBeispiel #1 cubrid_col_size example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
array(3) {
[0]=>
string(1) "1"
[1]=>
string(1) "2"
[2]=>
string(1) "3"
}
int(3)
|