Haplous Framework 

Haplous Framework Git Source Tree


Root/system/vendor/is_cli.php

<?php


function is_cli()
{
	if( defined('STDIN') )
	{
		return true;
	}

	if( empty($_SERVER['REMOTE_ADDR']) and !isset($_SERVER['HTTP_USER_AGENT']) and count($_SERVER['argv']) > 0)
	{
		return true;
	}

	return false;
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.06739s using 11 queries.