这两种类中调用函数的方法之间的区别是什么:
方法一:
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');