你会建议我在以下几点之间明智地使用性能
一个)
function db(){ return new mysqli('localhost','user','pass','db'); }
//global scope
$db = db();
function foo(){
//function scope
$db = db();
[...]
}
二)
//global scope
$db = new mysqli('localhost','user','pass','db');
function bar(){
//function scope
global $db
[...]
}
目前我正在使用方法 A,但我知道调用函数会产生开销,并且在大多数函数中都会调用 db(),所以我想知道。