====== getCustomMetaTypes ======
~~NOTOC~~
**From Version 5.22**\\
==See Also==
[[v5:reference:connection:setcustommetatype|setCustomMetaType]]\\
== Syntax ==
array getCustomMetaTypes()
==== Description ====
The function ''getCustomMetaTypes()'' returns an array of defined custom meta types
==== Example =====
Using an added custom geometery type
print_r($db->getCustomMetaTypes());
/*
* Prints
array (
'P' => array('actual'=>255,
'dictionary'=>'POINT',
'handler'=>false,
'callback'=>false
)
)
*/