Pregunta

Perdón por esta pregunta NewB, acabo de empezar a programar con PHP

Estoy siguiendo a Yahoo Mail Web Apps PHP Tutorial sobre la recuperación de correo de Yahoo.La guía está aquí. http://developer.yahoo.com/mail/docs/user_guide/credentialthuser.html

en el paso 3, dice: En el directorio descomprimido, ejecute el siguiente comando, donde puede ser JSON o SOAP:

$ PHP LISTFOLDERS.PHP

¿Qué significa por comando de ejecución?¿Te gusta el comando de ejecución en cmd.exe o en otro lugar?

¡Gracias!

¿Fue útil?

Solución

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
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top