1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="DateTimeZone" namespace="" name="DateTimeZone">
<constant name="AFRICA" value="1">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="AMERICA" value="2">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ANTARCTICA" value="4">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ARCTIC" value="8">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ASIA" value="16">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ATLANTIC" value="32">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="AUSTRALIA" value="64">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="EUROPE" value="128">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="INDIAN" value="256">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="PACIFIC" value="512">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="UTC" value="1024">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ALL" value="2047">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="ALL_WITH_BC" value="4095">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constant name="PER_COUNTRY" value="4096">
<docblock>
<var type="integer"/>
</docblock>
</constant>
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates new DateTimeZone object">Object oriented style</description>
<return type="void"/>
</docblock>
<parameter name="timezone" optional="false" byreference="false" type="string"/>
</constructor>
<method name="getLocation" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns location information for a timezone">Object oriented style</description>
<return type="array"/>
</docblock>
</method>
<method name="getName" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the name of the timezone">Object oriented style</description>
<return type="string"/>
</docblock>
</method>
<method name="getOffset" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the timezone offset from GMT">Object oriented style</description>
<return type="int"/>
</docblock>
<parameter name="datetime" optional="false" byreference="false" type="object" class="DateTime"/>
</method>
<method name="getTransitions" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns all transitions for the timezone">Object oriented style</description>
<return type="array"/>
</docblock>
<parameter name="timestamp_begin" optional="true" byreference="false" type="int"/>
<parameter name="timestamp_end" optional="true" byreference="false" type="int"/>
</method>
<method name="listAbbreviations" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns associative array containing dst, offset and the timezone name">Object oriented style</description>
<return type="array"/>
</docblock>
</method>
<method name="listIdentifiers" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns a numerically indexed array containing all defined timezone identifiers">Object oriented style</description>
<return type="array"/>
</docblock>
<parameter name="what" optional="true" byreference="false" type="int"/>
<parameter name="country" optional="true" byreference="false" type="string"/>
</method>
</class>
|