Class Id
Class Id
- IntType
-
IdType
implements
IdInterface
-
Id
implements
IdInterface
Package: Shared
Deprecated:
Category: System
Located at Deprecated/Shared/Id.inc.php
Deprecated:
Since v2.7.1.0, will be removed with v3.3.1.0.
NOTICE:
When you need to cast an Id object to integer, cast it first to string, because otherwise the following command will return always 1:
EXAMPLE:
$id = new Id(948); bad - (int)$id >> 1 good - (int)(string)$id >> 948
Category: System
Located at Deprecated/Shared/Id.inc.php