我已经为PHP开发人员下载了 Eclipse,以便管理Drupal代码。为此,我按照this页面上的描述更改了我的Eclipse设置,然后创建了一个新的PHP项目并引用了我的localhost网络服务器上的现有Drupal项目。 但是,现在我遇到了成千上万的错误,只出现在文档部分,就像我在下面复制的那样。 下面这些行的错误是: A无法解析为类型(第7行和第10行)。我认为这与缺少类型提示有关,因为它已被描述为here。不过,我想知道如何处理这个问题,因为我试图使用的代码只是导入。同时,我想将Eclipse用作IDE。
/**
* Checks that the directory exists and is writable.
*
* Directories need to have execute permissions to be considered a directory by
* FTP servers, etc.
*
* @param $directory A
* string reference containing the name of a directory path or URI. A
* trailing slash will be trimmed from a path.
* @param $options A
* bitmask to indicate if the directory should be created if it does
* not exist (FILE_CREATE_DIRECTORY) or made writable if it is read-only
* (FILE_MODIFY_PERMISSIONS).
*
* @return TRUE if the directory exists (or was created) and is writable. FALSE
* otherwise.
*/
答案 0 :(得分:0)
我想这只是Eclipse配置的问题。关于如何为Drupal开发配置Eclipse,有一个很大的步骤。
https://www.drupal.org/docs/develop/development-tools/configuring-eclipse
还有其他人也出来了。
除此之外,我宁愿为Drupal Development推荐PHPStorm。