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 が初めてで、他の誰かのソース コードから自分のやり方を理解しようとしています。ありがとう!
配列内のすべての値に引用符を追加します。