Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有这样定义的函数:
function x($a, $b, $c)
我怎样才能拨打类似的电话query('a', 'b'),将 b 替换为 $c?
query('a', 'b')
你可以调用它query('a', null, 'b')
query('a', null, 'b')