PHP 构造不工作?

发布于 2024-12-17 14:08:58 字数 209 浏览 0 评论 0原文

我有以下代码:

<?php

class Human()
{

    function __construct()
    {
        echo "A human was born";
    }

}

$Person1 = new Human();

?>

我试图让它打印出“一个人类诞生了”,但它只是没有它!

I have the following code:

<?php

class Human()
{

    function __construct()
    {
        echo "A human was born";
    }

}

$Person1 = new Human();

?>

I'm trying to get it to print out "A human was born", but it's just not having it!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情独悲 2024-12-24 14:08:59

删除 class Human 后面的 ()

<?php

class Human
{

    function __construct()
    {
        echo "A human was born";
    }

}

$Person1 = new Human();

?>

Remove the () after class Human.

<?php

class Human
{

    function __construct()
    {
        echo "A human was born";
    }

}

$Person1 = new Human();

?>
别在捏我脸啦 2024-12-24 14:08:59

您的语法有错误,您应该将类​​声明为:

class Human {

    function __construct()
    {
        echo "A human was born";
    }

}

类名后面没有 ()

You have an error in your syntax, you should declare the class as:

class Human {

    function __construct()
    {
        echo "A human was born";
    }

}

Without the () after the name of the class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文