To find out are you in CLI or not, this is much better in my opinion:
<?php
if (PHP_SAPI != "cli") {
exit;
}
?>
(PHP 4, PHP 5, PHP 7, PHP 8)
$argc — Betiğe geçirilen ifade sayısı
Komut satırından çalıştığında geçerli betiğe aktarılan ifade sayısını içerir.
Bilginize: Betiğin dosya adı her zaman ilk ifade olarak betiğe geçirilir, bu nedenle $argc'nin asgari değeri
1
'dir.
Bilginize: Bu değişken register_argc_argv etkin değilse kullanılamaz.
Örnek 1 - $argc örneği
<?php
var_dump($argc);
?>
Örneği şu şekilde çalıştırınca: php betik.php arg1 arg2 arg3
Yukarıdaki örnek şuna benzer bir çıktı üretir:
int(4)
Bilginize:
$_SERVER['argc'] olarak da kullanılabilir.
To find out are you in CLI or not, this is much better in my opinion:
<?php
if (PHP_SAPI != "cli") {
exit;
}
?>
Note: when using CLI $argc (as well as $argv) are always available, regardless of register_argc_argv, as explained at http://docs.php.net/manual/en/features.commandline.php
To decide whether my script is run from CLI I simply create a PHP script that handles only CLI invocations.
File cron.php:
<?php
// Set environment variables your application depends on
$_SERVER[ 'HTTP_HOST' ] = 'domain.tld';
// $_SERVER[ 'REQUEST_URI' ] = '/some/URI/if/needed';
// Use the environment to read out required values
$task = $_SERVER[ 'argv' ][ 1 ];
// Instanciate the dispatcher or whatever you use
$dispatcher = new Dispatcher();
$dispatcher->handle( $task );
?>
This way my application doesn't have to know about CLI at all.