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 — Die Anzahl der an das Skript übergebenen Argumente
Enthält die Anzahl der an das aktuelle Skript übergebenen Argumente, wenn das Skript auf der Kommandozeile läuft.
Hinweis: Der Dateiname des Skripts ist immer das erste an das Skript übergebene Argument, damit ist der kleinstmögliche Wert von $argc
1
.
Hinweis: Diese Variable ist nicht verfügbar, wenn register_argc_argv ausgeschaltet ist.
Beispiel #1 $argc-Beispiel
<?php
var_dump($argc);
?>
Wenn das Beispiel so aufgerufen wird: php script.php arg1 arg2 arg3
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
int(4)
Hinweis:
Dies ist ebenfalls als $_SERVER['argc'] verfügbar.
To find out are you in CLI or not, this is much better in my opinion:
<?php
if (PHP_SAPI != "cli") {
exit;
}
?>