示例#1
0
文件: Url.php 项目: mage2pro/core
 /**
  * 2016-05-30
  * @return bool
  */
 protected function thirdPartyLocalhost()
 {
     return dfc($this, function () {
         return df_is_localhost() && !df_my();
     });
 }
示例#2
0
文件: state.php 项目: mage2pro/core
/** @return bool */
function df_my_local()
{
    return dfcf(function () {
        return df_my() && df_is_localhost();
    });
}