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.
private static function quote($str) { return '"' . $str . '"'; }
这也意味着什么?
$args = array_map(array($this, 'quote'), $args);
我是 PHP 新手,正在尝试通过别人的源代码找出我的方法。谢谢!
它为数组中的所有值添加引号。