Searched refs:php_optind (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/ext/standard/ |
| H A D | basic_functions.c | 4195 int php_optind = 1; local 4318 while ((o = php_getopt(argc, argv, opts, &php_optarg, &php_optind, 0, 1)) != -1) {
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli.c | 662 int php_optind = 1, orig_optind = 1; local 676 while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { 728 php_optind = orig_optind; 730 while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { 918 if (argc > php_optind 922 && strcmp(argv[php_optind-1],"--")) 924 script_file=argv[php_optind]; 925 php_optind++; 952 SG(request_info).argc=argc-php_optind+1; 953 arg_excp = argv+php_optind 1207 int php_optind = 1, use_extended_info = 0; local [all...] |
| H A D | php_cli_server.c | 2372 int php_optind = 1; local 2380 while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2))!=-1) { 2416 if (argc > php_optind) { 2417 router = argv[php_optind];
|
| /PHP_5_4/sapi/cgi/ |
| H A D | cgi_main.c | 134 static int php_optind = 1; variable 1741 int orig_optind = php_optind; 1834 while (!skip_getopt && (c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { 1889 php_optind = orig_optind; 2092 while (!skip_getopt && (c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2)) != -1) { 2117 php_optind = orig_optind; 2135 while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { 2251 SG(request_info).argc = argc - (php_optind - 1); 2252 SG(request_info).argv = &argv[php_optind - 1]; 2254 } else if (argc > php_optind) { [all...] |
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 140 static int php_optind = 1; variable 1554 int orig_optind = php_optind; 1604 while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2)) != -1) { 1753 if (argc != php_optind) { 1765 php_optind = orig_optind;
|
Completed in 22 milliseconds