Discussion:
PHP en ligne de commande sous Vista
(trop ancien pour répondre)
jc
2010-06-10 13:21:14 UTC
Permalink
Bonjour,

J'ai installé wampserver sous windows vista et je souhaiterai utiliser php
en ligne de commande.
J'ai configuré la variable d'environnement php avec le chemin suivant
C:\Logiciels\wamp\bin\php\php.exe
Mais lorsque je tape php echo 'toto'; en ligne de commande, rien ne se
passe.

Que dois-je faire?
Y a-t-il un tutoriel?

Merci.
John GALLET
2010-06-12 15:13:08 UTC
Permalink
Post by jc
J'ai configuré la variable d'environnement php avec le chemin suivant
C:\Logiciels\wamp\bin\php\php.exe
Mais lorsque je tape php echo 'toto'; en ligne de commande, rien ne se
passe.
Je ne sais pas ce que tu appelles *exactement* "configurer la variable".
Si c'est une variable en DOS, elle commence par $

Chez moi sur unix il se passe ça:

[***@foo] ~
Yes Master>php echo 'toto';
Could not open input file: echo

Et sur windows XP:

C:\php>php.exe echo 'toto';
Status: 404
Content-type: text/html
X-Powered-By: PHP/4.3.4
Set-Cookie: ZDEDebuggerPresent=php,phtml,php3; path=/
No input file specified.

Essaie de faire toto.php qui contienne <?php echo 'toto';?> et
d'exécuter php -l toto.php ou php -f toto.php
(-l comme lint vérifie la syntaxe, -f exécute).

a++
JGA

Continuer la lecture sur narkive:
Loading...