无法在迁移中的目录中找到文件 laravel 4.2
Cannot find files inside a directory in migration laravel 4.2
我正在编写一个迁移,它从 txt 文件中读取并根据从文本文件接收到的数据创建表,如果我将它用作函数,则以下内容完美无缺
$files = File::glob("translation/*.txt" );
它获取 /public/translation/ 文件夹中的所有 txt 文件,但是当我在迁移文件中使用它时,上面的代码不起作用,有人可以帮我解决这个问题吗?
这样的相对路径很不靠谱。尝试对这些助手使用绝对路径 http://laravel.com/docs/4.2/helpers#paths
相对于app_path()
应该对你有好处。例如
$files = File::glob(app_path()."/translation/*.txt" );
我正在编写一个迁移,它从 txt 文件中读取并根据从文本文件接收到的数据创建表,如果我将它用作函数,则以下内容完美无缺
$files = File::glob("translation/*.txt" );
它获取 /public/translation/ 文件夹中的所有 txt 文件,但是当我在迁移文件中使用它时,上面的代码不起作用,有人可以帮我解决这个问题吗?
这样的相对路径很不靠谱。尝试对这些助手使用绝对路径 http://laravel.com/docs/4.2/helpers#paths
相对于app_path()
应该对你有好处。例如
$files = File::glob(app_path()."/translation/*.txt" );