|
/*
* ------------------------------------------------------
* Is there a valid cache file? If so, we're done...
* ------------------------------------------------------
*/
if ($EXT->_call_hook('cache_override') === FALSE)
{
if ($OUT->_display_cache($CFG, $URI) == TRUE)
{
exit;
}
}
在system/core/Codeigniter.php 中的这段代码。
虽然知道作用是什么,但是它的应用场景是什么呢?
|
|