-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPHP-cli-or-web.php
37 lines (33 loc) · 1.28 KB
/
PHP-cli-or-web.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.----------------. .----------------. .----------------.
| .--------------. || .--------------. || .--------------. |
| | ______ | || | ____ ____ | || | ______ | |
| | |_ __ \ | || | |_ || _| | || | |_ __ \ | |
| | | |__) | | || | | |__| | | || | | |__) | | |
| | | ___/ | || | | __ | | || | | ___/ | |
| | _| |_ | || | _| | | |_ | || | _| |_ | |
| | |_____| | || | |____||____| | || | |_____| | |
| | | || | | || | | |
| '--------------' || '--------------' || '--------------' |
'----------------' '----------------' '----------------'
This I often find useful, a tiny script / template to check
whether the script is being executed from (CLI) or via a web server.
- returns 1 for CLI
- returns 0 for web server execution
<?php
function checkExecutionEnvironment() {
if (php_sapi_name() === 'cli') { return 1;
//CLI
} else {
// Web Server
return 0; } }
$result = checkExecutionEnvironment();
// Depending on the context, output the result differently
if (php_sapi_name() === 'cli') {
// If CLI, just echo the result
echo $result . "\n";
} else {
// ??? WHATEVER
header('Content-Type: text/plain');
echo $result;
}
?>