gpt4 book ai didi

php - php中的类和函数有什么区别?

转载 作者:可可西里 更新时间:2023-11-01 13:37:43 26 4
gpt4 key购买 nike

<分区>

我自己使用了以下代码,它们都给出了相同的结果。那么为什么我们使用类而不是普通函数,以及类和函数之间的区别是什么。

<?php

class MyClass{

public $property = "This is My Class Property";

public function getProperty(){

echo $this->property."<br />";

}

}

$obj=new MyClass();
echo $obj->getProperty();

?>


<?php

function getProp(){

$prop="This is My Class Property";

echo $prop;

}

getProp();

?>

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com