我目前正在研究 ZEND 框架,并在 index.php 中遇到了这个:
// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
这和这个一样吗?
if(!defined('APPLICATION_PATH')){
define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
}
我以前从未遇到过这种速记语法。