Example #1
0
 /**
  * 2016-05-30
  * @return bool
  */
 protected function thirdPartyLocalhost()
 {
     return dfc($this, function () {
         return df_is_localhost() && !df_my();
     });
 }
Example #2
0
/** @return bool */
function df_my_local()
{
    return dfcf(function () {
        return df_my() && df_is_localhost();
    });
}