php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20299 On the command line, $argv/ $argc are not set
Submitted: 2002-11-07 08:28 UTC Modified: 2002-11-07 14:24 UTC
From: web at affenkrieger dot de Assigned:
Status: Not a bug Package: Variables related
PHP Version: 4.2.3 OS: WinNT SP6
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: web at affenkrieger dot de
New email:
PHP Version: OS:

 

 [2002-11-07 08:28 UTC] web at affenkrieger dot de
Using php on the command line, the variables $argv and $argc are not set even when arguments are present. I used the newest win32 zip package from php.net. But it worked on a linux system ...

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-07 08:36 UTC] cynic@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.

 [2002-11-07 08:48 UTC] web at affenkrieger dot de
this is the script 'test.php'
-----
<?php
  print_r($argv);
?>
-----

when called via
c:\>php -f test.php test bla testagain

it should print:
------
Array
(
    [0] => test.php
    [1] => test
    [2] => bla
    [3] => testagain
)
-----

but nothing happens.

i used php 4.2.3 win32 binaries (zip) on a WinNT SP6 PC.
all other things seem to work.
 [2002-11-07 08:54 UTC] wez@php.net
In PHP 4.2.0, the 'register_globals' setting default changed to
'off'. See http://www.php.net/release_4_2_0.php for more info.
We are sorry about the inconvenience, but this change was a necessary
part of our efforts to make PHP scripting more secure and portable.


 [2002-11-07 08:54 UTC] cynic@php.net
what is your register_argc_argv setting?

 [2002-11-07 08:57 UTC] web at affenkrieger dot de
bah - register_globals... damn im an idiot 8-)
 [2002-11-07 09:25 UTC] cynic@php.net
pilot error -> bogus

 [2002-11-07 14:24 UTC] philip@php.net
See also $_SERVER['argv'] and friends.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 23:01:28 2024 UTC