문제

이 새로이 질문에 대해 죄송합니다. 방금 PHP 로 프로그래밍을 시작했습니다.

야후에서 메일을 검색하는 데이후 메일 웹 앱 PHP 자습서를 따르고 있습니다.가이드는 여기 있습니다 http://developer.yahoo.com/mail/docs/user_guide/credentialtheuser.html.

3 단계에서 다음과 같이 말합니다. 압축 해제 된 디렉토리에서 다음 명령을 실행하십시오. 여기서 json 또는 soap :

$ php listfolders.php

실행 명령이 무엇을 의미합니까?cmd.exe 또는 다른 위치에서 명령을 실행하는 것과 같습니까?

감사합니다!

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top