1

嗨,朋友们,我已经分享了我的代码。我在这个程序中使用了嵌套类。当我运行此代码时,它会显示这样的错误。“语法错误,意外的 T_CLASS,期待 T_FUNCTION

  class Nest
   {
  class Display
  { 
   private $s;
   public sum($a, $b)
 { 
   $s =$a+$b; 
 }
 function show()
 {
 echo "Sum of a and b is:: ". $s;
 }
 }
 }

 new $x = Nest::Display;
 $x->sum(12, 10);
 $x->show();

我不知道我犯了什么错误。任何人都可以帮助解决这个问题。

4

1 回答 1

3

PHP 中不能有嵌套类。

不过,您可能想了解命名空间

于 2012-12-10T13:13:44.817 回答