我在这里的朋友们分享了我的代码。我在本程序中使用了Nested类。当我运行此代码时,它会显示错误。 “语法错误,意外的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();
我不知道我做了什么错。任何人都有助于解决这个问题。