Zend_Date-Additional.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.date.additional">
  4. <title>Working Examples</title>
  5. <para>
  6. Within this chapter, we will describe several additional functions which are also available
  7. through <classname>Zend_Date</classname>. Of course all described functions have additional
  8. examples to show the expected working and the simple <acronym>API</acronym> for the proper
  9. using of them.
  10. </para>
  11. <sect2 id="zend.date.additional.checking">
  12. <title>Checking Dates</title>
  13. <para>
  14. Probably most dates you will get as input are strings. But the problem with strings is
  15. that you can not be sure if the string is a real date. Therefor
  16. <classname>Zend_Date</classname> has spent an own static function to check date strings.
  17. <classname>Zend_Locale</classname> has an own function
  18. <methodname>getDate($date, $locale)</methodname> which parses a date and returns the
  19. proper and normalized date parts. A monthname for example will be recognised and
  20. returned just a month number. But as <classname>Zend_Locale</classname> does not know
  21. anything about dates because it is a normalizing and localizing class we have
  22. integrated an own function <methodname>isDate($date)</methodname> which checks this.
  23. </para>
  24. <para>
  25. <methodname>isDate($date, $format, $locale)</methodname> can take up to 3 parameters
  26. and needs minimum one parameter. So what we need to verify a date is, of course, the
  27. date itself as string. The second parameter can be the format which the date is
  28. expected to have. If no format is given the standard date format from your locale is
  29. used. For details about how formats should look like see the chapter about <link
  30. linkend="zend.date.constants.selfdefinedformats">self defined formats</link>.
  31. </para>
  32. <para>
  33. The third parameter is also optional as the second parameter and can be used to give a
  34. locale. We need the locale to normalize monthnames and daynames. So with the third
  35. parameter we are able to recognise dates like '01.Jänner.2000' or '01.January.2000'
  36. depending on the given locale.
  37. </para>
  38. <para>
  39. <methodname>isDate()</methodname> of course checks if a date does exist.
  40. <classname>Zend_Date</classname> itself does not check a date. So it is possible to
  41. create a date like '31.February.2000' with <classname>Zend_Date</classname> because
  42. <classname>Zend_Date</classname> will automatically correct the date and return the
  43. proper date. In our case '03.March.2000'. <methodname>isDate()</methodname> on the
  44. other side does this check and will return <constant>FALSE</constant> on
  45. '31.February.2000' because it knows that this date is impossible.
  46. </para>
  47. <example id="zend.date.additional.checking.example-1">
  48. <title>Checking Dates</title>
  49. <programlisting language="php"><![CDATA[
  50. // Checking dates
  51. $date = '01.03.2000';
  52. if (Zend_Date::isDate($date)) {
  53. print "String $date is a date";
  54. } else {
  55. print "String $date is NO date";
  56. }
  57. // Checking localized dates
  58. $date = '01 February 2000';
  59. if (Zend_Date::isDate($date,'dd MMMM yyyy', 'en')) {
  60. print "String $date is a date";
  61. } else {
  62. print "String $date is NO date";
  63. }
  64. // Checking impossible dates
  65. $date = '30 February 2000';
  66. if (Zend_Date::isDate($date,'dd MMMM yyyy', 'en')) {
  67. print "String $date is a date";
  68. } else {
  69. print "String $date is NO date";
  70. }
  71. ]]></programlisting>
  72. </example>
  73. </sect2>
  74. <sect2 id="zend.date.additional.sunrise-sunset">
  75. <title>Sunrise and Sunset</title>
  76. <para>
  77. <classname>Zend_Date</classname> has also functions integrated for getting informations
  78. from the sun. Often it is necessary to get the time for sunrise or sunset within a
  79. particularly day. This is quite easy with <classname>Zend_Date</classname> as just the
  80. expected day has to be given and additionally location for which the sunrise or sunset
  81. has to be calculated.
  82. </para>
  83. <para>
  84. As most people do not know the location of their city we have also spent a helper class
  85. which provides the location data for about 250 capital and other big cities around the
  86. whole world. Most people could use cities near themself as the difference for locations
  87. situated to each other can only be measured within some seconds.
  88. </para>
  89. <para>
  90. For creating a listbox and choosing a special city the function
  91. <classname>Zend_Date_Cities::getCityList</classname> can be used. It returns the names
  92. of all available predefined cities for the helper class.
  93. </para>
  94. <example id="zend.date.additional.sunrise-sunset.example-1">
  95. <title>Getting all Available Cities</title>
  96. <programlisting language="php"><![CDATA[
  97. // Output the complete list of available cities
  98. print_r (Zend_Date_Cities::getCityList());
  99. ]]></programlisting>
  100. </example>
  101. <para>
  102. The location itself can be received with the
  103. <methodname>Zend_Date_Cities::City()</methodname> function. It accepts the name of the
  104. city as returned by the <methodname>Zend_Date_Cities::getCityList()</methodname>
  105. function and optional as second parameter the horizon to set.
  106. </para>
  107. <para>
  108. There are 4 defined horizons which can be used with locations to receive the exact time
  109. of sunset and sunrise. The '<code>horizon</code>' parameter is always optional in all
  110. functions. If it is not set, the '<code>effective</code>' horizon is used.
  111. </para>
  112. <table id="zend.date.additional.sunrise-sunset.table">
  113. <title>Types of Supported Horizons for Sunset and Sunrise</title>
  114. <tgroup cols="3">
  115. <thead>
  116. <row>
  117. <entry>Horizon</entry>
  118. <entry>Description</entry>
  119. <entry>Usage</entry>
  120. </row>
  121. </thead>
  122. <tbody>
  123. <row>
  124. <entry>effective</entry>
  125. <entry>Standard horizon</entry>
  126. <entry>
  127. Expects the world to be a ball. This horizon is always used if non is
  128. defined.
  129. </entry>
  130. </row>
  131. <row>
  132. <entry>civil</entry>
  133. <entry>Common horizon</entry>
  134. <entry>Often used in common medias like TV or radio</entry>
  135. </row>
  136. <row>
  137. <entry>nautic</entry>
  138. <entry>Nautic horizon</entry>
  139. <entry>Often used in sea navigation</entry>
  140. </row>
  141. <row>
  142. <entry>astronomic</entry>
  143. <entry>Astronomic horizon</entry>
  144. <entry>Often used for calculation with stars</entry>
  145. </row>
  146. </tbody>
  147. </tgroup>
  148. </table>
  149. <para>
  150. Of course also a self-defined location can be given and calculated with. Therefor a
  151. '<code>latitude</code>' and a '<code>longitude</code>' has to be given and optional the
  152. '<code>horizon</code>'.
  153. </para>
  154. <example id="zend.date.additional.sunrise-sunset.example-2">
  155. <title>Getting the Location for a City</title>
  156. <programlisting language="php"><![CDATA[
  157. // Get the location for a defined city
  158. // uses the effective horizon as no horizon is defined
  159. print_r (Zend_Date_Cities::City('Vienna'));
  160. // use the nautic horizon
  161. print_r (Zend_Date_Cities::City('Vienna', 'nautic'));
  162. // self definition of a location
  163. $mylocation = array('latitude' => 41.5, 'longitude' => 13.2446);
  164. ]]></programlisting>
  165. </example>
  166. <para>
  167. As now all needed data can be set the next is to create a
  168. <classname>Zend_Date</classname> object with the day where sunset or sunrise should be
  169. calculated. For the calculation there are 3 functions available. It is possible to
  170. calculate sunset with '<methodname>getSunset()</methodname>', sunrise with
  171. '<methodname>getSunrise()</methodname>' and all available informations related to the
  172. sun with '<methodname>getSunInfo()</methodname>'. After the calculation the
  173. <classname>Zend_Date</classname> object will be returned with the calculated time.
  174. </para>
  175. <example id="zend.date.additional.sunrise-sunset.example-3">
  176. <title>Calculating Sun Information</title>
  177. <programlisting language="php"><![CDATA[
  178. // Get the location for a defined city
  179. $city = Zend_Date_Cities::City('Vienna');
  180. // create a date object for the day for which the sun has to be calculated
  181. $date = new Zend_Date('10.03.2007', Zend_Date::ISO_8601, 'de');
  182. // calculate sunset
  183. $sunset = $date->getSunset($city);
  184. print $sunset->get(Zend_Date::ISO_8601);
  185. // calculate all sun informations
  186. $info = $date->getSunInfo($city);
  187. foreach ($info as $sun) {
  188. print "\n" . $sun->get(Zend_Date::ISO_8601);
  189. }
  190. ]]></programlisting>
  191. </example>
  192. </sect2>
  193. <sect2 id="zend.date.additional.timezones">
  194. <title>Time Zones</title>
  195. <para>
  196. Time zones are as important as dates themselves. There are several time zones depending
  197. on where in the world a user lives. So working with dates also means to set the proper
  198. timezone. This may sound complicated but it's easier as expected. As already mentioned
  199. in the first chapter of <classname>Zend_Date</classname> the default timezone has to be
  200. set. Either by <filename>php.ini</filename> or by definition within the bootstrap file.
  201. </para>
  202. <para>
  203. A <classname>Zend_Date</classname> object of course also stores the actual timezone.
  204. Even if the timezone is changed after the creation of the object it remembers the
  205. original timezone and works with it. It is also not necessary to change the timezone
  206. within the code with <acronym>PHP</acronym> functions. <classname>Zend_Date</classname>
  207. has two built-in functions which makes it possible to handle this.
  208. </para>
  209. <para>
  210. <methodname>getTimezone()</methodname> returns the actual set timezone of within the
  211. <classname>Zend_Date</classname> object. Remember that <classname>Zend_Date</classname>
  212. is not coupled with <acronym>PHP</acronym> internals. So the returned timezone is not
  213. the timezone of the <acronym>PHP</acronym> script but the timezone of the object.
  214. <methodname>setTimezone($zone)</methodname> is the second function and makes it possible
  215. to set new timezone for <classname>Zend_Date</classname>. A given timezone is always
  216. checked. If it does not exist an exception will be thrown. Additionally the actual
  217. scripts or systems timezone can be set to the date object by calling
  218. <methodname>setTimezone()</methodname> without the zone parameter. This is also done
  219. automatically when the date object is created.
  220. </para>
  221. <example id="zend.date.additional.timezones.example-1">
  222. <title>Working with Time Zones</title>
  223. <programlisting language="php"><![CDATA[
  224. // Set a default timezone... this has to be done within the bootstrap
  225. // file or php.ini.
  226. // We do this here just for having a complete example.
  227. date_default_timezone_set('Europe/Vienna');
  228. // create a date object
  229. $date = new Zend_Date('10.03.2007', Zend_Date::DATES, 'de');
  230. // view our date object
  231. print $date->getIso();
  232. // what timezone do we have ?
  233. print $date->getTimezone();
  234. // set another timezone
  235. $date->setTimezone('America/Chicago');
  236. // what timezone do we now have ?
  237. print $date->getTimezone();
  238. // see the changed date object
  239. print $date->getIso();
  240. ]]></programlisting>
  241. </example>
  242. <para>
  243. <classname>Zend_Date</classname> always takes the actual timezone for object creation as
  244. shown in the first lines of the example. Changing the timezone within the created object
  245. also has an effect to the date itself. Dates are always related to a timezone. Changing
  246. the timezone for a <classname>Zend_Date</classname> object does not change the time of
  247. <classname>Zend_Date</classname>. Remember that internally dates are always stored as
  248. timestamps and in <acronym>GMT</acronym>. So the timezone means how much hours should be
  249. substracted or added to get the actual global time for the own timezone and region.
  250. </para>
  251. <para>
  252. Having the timezone coupled within <classname>Zend_Date</classname> has another positive
  253. effect. It is possible to have several dates with different timezones.
  254. </para>
  255. <example id="zend.date.additional.timezones.example-2">
  256. <title>Multiple Time Zones</title>
  257. <programlisting language="php"><![CDATA[
  258. // Set a default timezone... this has to be done within the bootstrap
  259. // file or php.ini.
  260. // We do this here just for having a complete example.
  261. date_default_timezone_set('Europe/Vienna');
  262. // create a date object
  263. $date = new Zend_Date('10.03.2007 00:00:00', Zend_Date::ISO_8601, 'de');
  264. // view our date object
  265. print $date->getIso();
  266. // the date stays unchanged even after changeing the timezone
  267. date_default_timezone_set('America/Chicago');
  268. print $date->getIso();
  269. $otherdate = clone $date;
  270. $otherdate->setTimezone('Brazil/Acre');
  271. // view our date object
  272. print $otherdate->getIso();
  273. // set the object to the actual systems timezone
  274. $lastdate = clone $date;
  275. $lastdate->setTimezone();
  276. // view our date object
  277. print $lastdate->getIso();
  278. ]]></programlisting>
  279. </example>
  280. </sect2>
  281. </sect1>
  282. <!--
  283. vim:se ts=4 sw=4 et:
  284. -->