PHP - Basics and Execution Model
What will be the output when running this PHP script via CLI?
if (php_sapi_name() == 'cli') {
echo "Running in CLI";
} else {
echo "Running on Web Server";
}