PHP:调用类 - 差异是什么?

时间:2017-08-25 19:30:16

标签: php function class oop call

这两种类中调用函数的方法之间的区别是什么:

方法一:

Myclass::returnValue('the value');

方法二:

$returnthevalue = new MyClass();
$returnthevalue->returnValue('the value');

(两者都打印相同)

<?php

class MyClass
{
    public function returnValue($string){
        echo "<br><strong>";
        echo 'This is the value: ' . $string;
        echo "<br></strong>";
    }

}

Myclass::returnValue('some');
$returnthevalue = new MyClass();
$returnthevalue->returnValue('the value');

0 个答案:

没有答案