Question

Désolé pour cette question Newb, je viens de commencer à programmer avec PHP

Je suive Yahoo Mail Web Apps Tutoriel PHP sur la récupération de courrier de Yahoo.Le guide est ici http://developer.yahoo.com/mail/docs/user_guide/credentialtheuser.html

à l'étape 3, il dit: Dans le répertoire décompressé, exécutez la commande suivante, où peut être JSON ou SOAP:

$ PHP ListFolders.PHP

Qu'est-ce que cela signifie par commande exécuter?comme la commande d'exécution sur cmd.exe ou ailleurs?

merci!

Était-ce utile?

La solution

Yes, you need to cd (change directory) to your "unzipped directory", and I'll assume you don't have the PHP command available in shell, so you will probably need to supply the entire path.

from cmd.exe,

/path/to/your/php.exe ListFolders.php

or if you do not wish to cd to this directory, simply specify the full path

/path/to/your/php.exe /path/to/unzipped/ListFolders.php
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top