如何在usort中使用$ this来使用类内部函数

时间:2016-01-22 09:44:42

标签: 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变量

来使用此函数名称

0 个答案:

没有答案