标签: php function class this
我在班上做了这个功能,
protected function compareByName($a, $b) { return strcmp($a["name"], $b["name"]); } usort($a, 'compareByName'); // here I have to use this function name
我们如何使用$this变量
$this