$argc

(PHP 4, PHP 5, PHP 7)

$argcLiczba argumentów przekazanych do skryptu

Opis

Zawiera liczbę argumentów przekazanych do aktualnego skryptu, gdy uruchamiany on jest z linii poleceń.

Informacja: Nazwa pliku ze skryptem jest także przekazywana jako argument skryptu, tak więc minimalna wartość $argc to 1.

Informacja: Ta zmienna jest niedostępna, gdy dyrektywa register_argc_argv jest wyłączona.

Przykłady

Przykład #1 Przykład użycia $argc

<?php
var_dump
($argc);
?>

Zakładamy następujące wykonanie skryptu: php script.php arg1 arg2 arg3

Powyższy przykład wyświetli coś podobnego do:

int(4)

Notatki

Informacja:

Ta zmienna jest także dostępna jako $_SERVER['argc'].

Zobacz też:

  • getopt() - Gets options from the command line argument list
  • $argv

add a note add a note

User Contributed Notes 4 notes

up
36
Tejesember
12 years ago
To find out are you in CLI or not, this is much better in my opinion:
<?php
if (PHP_SAPI != "cli") {
    exit;
}
?>
up
-7
karsten at typo3 dot org
15 years ago
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
up
-14
elm at r3m0ve dot gmx dot ch
10 years ago
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.
up
-18
anonymous
5 years ago
int main(int argc, char *argv[])
{
  fprintf(stdout,"argumen count : %d\n",argc);
  fprintf(stdout,"argumen vector : %s\n",argv);
  return 0;
}
To Top