PHP 中的 SimpleTest 单元测试不断从相对路径获取文件目录错误?
我正在使用 Zend Framework MVC 和 SimpleTest 库进行单元测试。我有一个特定的模型一直失败,因为它使用 Zend Cache 并且缓存目录是相对路径我想知道是否有人见过像这样的问题 b4.谢谢。
I am using Zend Framework MVC and unit-testing with SimpleTest library. I have a specific model that keeps failing because it uses Zend Cache and the cache directory is a relative path I was wondering if anyone has seen a problem like this b4. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须使用 $_SERVER['DOCUMENT_ROOT'] 建立绝对路径,无论我使用什么文件结构都可以。真正的相对路径。哈哈。
I had to make an absolute path using $_SERVER['DOCUMENT_ROOT'] that way no matter what file structure I am on it works. a Truly relative path. lol.