zend2.php.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. Example 1: A singleton (static members)
  2. =======================================
  3. <?php
  4. class Counter {
  5. var $counter = 0;
  6. function increment_and_print()
  7. {
  8. print ++$this->counter;
  9. print "\n";
  10. }
  11. }
  12. class SingletonCounter {
  13. static $m_instance = NULL;
  14. function Instance()
  15. {
  16. if (self::$m_instance == NULL) {
  17. self::$m_instance = new Counter();
  18. }
  19. return self::$m_instance;
  20. }
  21. }
  22. SingletonCounter::Instance()->increment_and_print();
  23. SingletonCounter::Instance()->increment_and_print();
  24. SingletonCounter::Instance()->increment_and_print();
  25. ?>
  26. Example 2: Factory method (derefencing objects returned from functions)
  27. =======================================================================
  28. <?php
  29. class Circle {
  30. function draw()
  31. {
  32. print "Circle\n";
  33. }
  34. }
  35. class Square {
  36. function draw()
  37. {
  38. print "Square\n";
  39. }
  40. }
  41. function ShapeFactoryMethod($shape)
  42. {
  43. switch ($shape) {
  44. case "Circle":
  45. return new Circle();
  46. case "Square":
  47. return new Square();
  48. }
  49. }
  50. ShapeFactoryMethod("Circle")->draw();
  51. ShapeFactoryMethod("Square")->draw();
  52. ?>
  53. Example 3: Class constants and class scope
  54. ==========================================
  55. <?php
  56. class ErrorCodes {
  57. const FATAL = "Fatal error\n";
  58. const WARNING = "Warning\n";
  59. const INFO = "Informational message\n";
  60. function print_fatal_error_codes()
  61. {
  62. print "FATAL = " . FATAL;
  63. print "self::FATAL = " . self::FATAL;
  64. }
  65. }
  66. /* Call the static function and move into the ErrorCodes scope */
  67. ErrorCodes::print_fatal_error_codes();
  68. ?>
  69. Example 4: Regular object method using both local and global functions
  70. ======================================================================
  71. <?php
  72. class HelloWorld {
  73. const HELLO_WORLD = "Hello, World!\n";
  74. function get_hello_world()
  75. {
  76. return HELLO_WORLD;
  77. }
  78. function length_of_hello_world()
  79. {
  80. $str = $this->get_hello_world();
  81. return strlen($str);
  82. }
  83. }
  84. $obj = new HelloWorld();
  85. print "length_of_hello_world() = " . $obj->length_of_hello_world();
  86. print "\n";
  87. ?>
  88. Example 5: Multiple derefencing of objects returned from methods
  89. ================================================================
  90. <?php
  91. class Name {
  92. function Name($_name)
  93. {
  94. $this->name = $_name;
  95. }
  96. function display()
  97. {
  98. print $this->name;
  99. print "\n";
  100. }
  101. }
  102. class Person {
  103. function Person($_name, $_address)
  104. {
  105. $this->name = new Name($_name);
  106. }
  107. function getName()
  108. {
  109. return $this->name;
  110. }
  111. }
  112. $person = new Person("John", "New York");
  113. $person->getName()->display();
  114. ?>
  115. Example 6: Exception handling
  116. =============================
  117. <?
  118. class MyException {
  119. function MyException($_error) {
  120. $this->error = $_error;
  121. }
  122. function getException()
  123. {
  124. return $this->error;
  125. }
  126. }
  127. function ThrowException()
  128. {
  129. throw new MyException("'This is an exception!'");
  130. }
  131. try {
  132. } catch (MyException $exception) {
  133. print "There was an exception: " . $exception->getException();
  134. print "\n";
  135. }
  136. try {
  137. ThrowException();
  138. } catch (MyException $exception) {
  139. print "There was an exception: " . $exception->getException();
  140. print "\n";
  141. }
  142. ?>
  143. Example 7: __clone()
  144. ===================
  145. <?
  146. class MyCloneable {
  147. static $id = 0;
  148. function MyCloneable()
  149. {
  150. $this->id = self::$id++;
  151. }
  152. function __clone()
  153. {
  154. $this->name = $that->name;
  155. $this->address = "New York";
  156. $this->id = self::$id++;
  157. }
  158. }
  159. $obj = new MyCloneable();
  160. $obj->name = "Hello";
  161. $obj->address = "Tel-Aviv";
  162. print $obj->id;
  163. print "\n";
  164. $obj = $obj->__clone();
  165. print $obj->id;
  166. print "\n";
  167. print $obj->name;
  168. print "\n";
  169. print $obj->address;
  170. print "\n";
  171. ?>
  172. Example 8: Unified constructors
  173. ===============================
  174. <?
  175. class BaseClass {
  176. function __construct()
  177. {
  178. print "In BaseClass constructor\n";
  179. }
  180. }
  181. class SubClass extends BaseClass {
  182. function __construct()
  183. {
  184. parent::__construct();
  185. print "In SubClass constructor\n";
  186. }
  187. }
  188. $obj = new BaseClass();
  189. $obj = new SubClass();
  190. ?>
  191. Example 9: Destructors
  192. =======================
  193. <?php
  194. class MyDestructableClass {
  195. function __construct()
  196. {
  197. print "In constructor\n";
  198. $this->name = "MyDestructableClass";
  199. }
  200. function __destruct()
  201. {
  202. print "Destroying " . $this->name . "\n";
  203. }
  204. }
  205. $obj = new MyDestructableClass();
  206. ?>