10.4 PHP中的面向对象(一)

在定义一个类时往往会使其继承某个父类或者实现某个接口,在扩展中实现这个功能非常方便。下面我先给出PHP语言中的代码。

  1. <?php
  2. interface i_myinterface
  3. {
  4. public function hello();
  5. }
  6. class parent_class implements i_myinterface
  7. {
  8. public function hello()
  9. {
  10. echo "Good Morning!\n";
  11. }
  12. }
  13. final class myclass extends parent_class
  14. {
  15. public function call_hello()
  16. {
  17. $this->hello();
  18. }
  19. }

上面的代码我们已经非常熟悉了,它们在PHP扩展中的实现应该是这样的:

  1. //三个zend_class_entry
  2. zend_class_entry *i_myinterface_ce,*parent_class_ce,*myclass_ce;
  3. //parent_class的hello方法
  4. ZEND_METHOD(parent_class,hello)
  5. {
  6. php_printf("hello world!\n");
  7. }
  8. //myclass的call_hello方法
  9. ZEND_METHOD(myclass,call_hello)
  10. {
  11. //这里涉及到如何调用对象的方法,详细内容下一章叙述
  12. zval *this_zval;
  13. this_zval = getThis();
  14. zend_call_method_with_0_params(&this_zval,myclass_ce,NULL,"hello",NULL);
  15. }
  16. //各自的zend_function_entry
  17. static zend_function_entry i_myinterface_method[]={
  18. ZEND_ABSTRACT_ME(i_myinterface, hello, NULL)
  19. {NULL,NULL,NULL}
  20. };
  21. static zend_function_entry parent_class_method[]={
  22. ZEND_ME(parent_class,hello,NULL,ZEND_ACC_PUBLIC)
  23. {NULL,NULL,NULL}
  24. };
  25. static zend_function_entry myclass_method[]={
  26. ZEND_ME(myclass,call_hello,NULL,ZEND_ACC_PUBLIC)
  27. {NULL,NULL,NULL}
  28. };
  29. ZEND_MINIT_FUNCTION(test)
  30. {
  31. zend_class_entry ce,p_ce,i_ce;
  32. INIT_CLASS_ENTRY(i_ce,"i_myinterface",i_myinterface_method);
  33. i_myinterface_ce = zend_register_internal_interface(&i_ce TSRMLS_CC);
  34. //定义父类,最后使用zend_class_implements函数声明它实现的接口
  35. INIT_CLASS_ENTRY(p_ce,"parent_class",parent_class_method);
  36. parent_class_ce = zend_register_internal_class(&p_ce TSRMLS_CC);
  37. zend_class_implements(parent_class_ce TSRMLS_CC,1,i_myinterface_ce);
  38. //定义子类,使用zend_register_internal_class_ex函数
  39. INIT_CLASS_ENTRY(ce,"myclass",myclass_method);
  40. myclass_ce = zend_register_internal_class_ex(&ce,parent_class_ce,"parent_class" TSRMLS_CC);
  41. //注意:ZEND_ACC_FINAL是用来修饰方法的,而ZEND_ACC_FINAL_CLASS是用来修饰类的
  42. myclass_ce->ce_flags |= ZEND_ACC_FINAL_CLASS;
  43. return SUCCESS;
  44. }

这样,当我们在PHP语言中进行如下操作时,便会得到预期的输出:

  1. <?php
  2. $obj = new myclass();
  3. $obj->hello();
  4. /*
  5. 输出内容:
  6. walu@walu-ThinkPad-Edge:/cnan/program/php-5.3.6/ext/test$ php test.php
  7. hello world!
  8. */

这里的ZEND_ABSTRACT_ME()宏函数比较特殊,它会声明一个abstract public类型的函数,这个函数不需要我们实现,因此也就不需要相应的ZEND_METHOD(i_myinterface,hello){…}的实现。一般来说,一个接口是不能设计出某个非public类型的方法的,因为接口暴露给使用者的都应该是一些公开的信息。不过如果你非要这么设计,那也不是办不到,只要别用ZEND_ABSTRACT_ME()宏函数就行了,而用它的底层实现ZEND_FN()宏函数

  1. //它可以对应<?php ...public static function apply_request();...的接口方法声明。
  2. static zend_function_entry i_myinterface[]=
  3. {
  4. ZEND_FENTRY(apply_request, NULL, NULL, ZEND_ACC_STATIC|ZEND_ACC_ABSTRACT|ZEND_ACC_PUBLIC)
  5. {NULL,NULL,NULL}
  6. };

这样,只要掩码中有ZEND_ACC_ABSTRACT,便代表是一个不需要具体实现的方法。ZEND_FENTRY其实是ZEND_ME和ZEND_FE的最终实现,现在我们把这一组宏罗列在这一次展开,供你参考使用。

  1. #define ZEND_FENTRY(zend_name, name, arg_info, flags) { #zend_name, name, arg_info, (zend_uint) (sizeof(arg_info)/sizeof(struct _zend_arg_info)-1), flags },
  2. #define ZEND_FN(name) zif_##name
  3. #define ZEND_MN(name) zim_##name
  4. #define ZEND_FE(name, arg_info) ZEND_FENTRY(name, ZEND_FN(name), arg_info, 0)
  5. #define ZEND_ME(classname, name, arg_info, flags) ZEND_FENTRY(name, ZEND_MN(classname##_##name), arg_info, flags)