Voting

: max(seven, six)?
(Example: nine)

The Note You're Voting On

Kodeart
12 years ago
Check directly without calling functions:
<?php
if (PHP_SAPI === 'cli')
{
// ...
}
?>

You can define a constant to use it elsewhere
<?php
define
('ISCLI', PHP_SAPI === 'cli');
?>

<< Back to user notes page

To Top