Php返回多个参数

function callee() {
    return array($content = "foo", $code = 200);
}

list($content, $code) = callee();