Skip to content

Instantly share code, notes, and snippets.

@aloha1003
Created April 8, 2016 06:51
Show Gist options
  • Save aloha1003/fea5066dd68ebdeab567f868202c44f0 to your computer and use it in GitHub Desktop.
Save aloha1003/fea5066dd68ebdeab567f868202c44f0 to your computer and use it in GitHub Desktop.
use \App\Model\ObjectForTest as ObjectForTest;
class Main() {
function test() {
$ary = [];
array_map(array('ObjectForTest', 'fun'), $ary); //回報錯誤
array_map(array('\App\Model\ObjectForTest', 'fun'), $ary); //正常
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment