PHP - 如何将大量文件路径存储到MySQL数据库?

发布于 2024-12-01 09:51:59 字数 311 浏览 1 评论 0原文

我需要将大量文件存储到 MySQL 数据库中。这些文件存储在服务器上,我需要做的是这样的:

ID     artist         album         path
123    Artist Name    Album Name    /music/Artist Name/Album Name/Music Name.mp3

但正如我所说,这是一个非常大量的文件,手动添加它们不是一个选择。我想知道是否有人知道一种简单的方法让我至少将路径导入数据库。我可以在之后实现艺术家和专辑,并且可以手动完成。

有什么想法吗?

I need to store a very large number of files to a MySQL database. These files are stored on the server, and what I need to do is something like this:

ID     artist         album         path
123    Artist Name    Album Name    /music/Artist Name/Album Name/Music Name.mp3

But as I said, it's a very large number of files, and add them manually isn't an option. I'm wondering if anyone knows an easy way for me to import at least the path into the database. The Artist and Album I can implement after, and it's possible to do it manually.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

鸵鸟症 2024-12-08 09:51:59
  1. 编写 php 脚本,从特定位置读取文件。您可以使用目录迭代器 http://www.php.net/manual/en/ class.recursivedirectoryiterator.php
  2. 形成结构为 'artist_name' 'album' 'path' 的文本文件。
  3. 使用 LOAD DATA INFILE 'file' INTO TABLE your_table;请参阅http://dev.mysql.com/doc/refman/ 5.1/en/load-data.html
  1. Write php script which will read files from specific location. You can use directory iterator http://www.php.net/manual/en/class.recursivedirectoryiterator.php
  2. Form text file with structure 'artist_name' 'album' 'path'.
  3. Use LOAD DATA INFILE 'file' INTO TABLE your_table; See http://dev.mysql.com/doc/refman/5.1/en/load-data.html
国粹 2024-12-08 09:51:59

提示:使用 PHP 递归地查找文件结构中的 *.mp3 文件或您要查找的任何扩展名。对于返回的每个结果,将整个路径、文件大小等存储在数据库表中。您可能需要考虑使用 Python 语言来实现此目的。

A clue: Use PHP to recursively look through your file structure for *.mp3 files, or whichever the extensions you are looking for. For each result returned, store the whole path, filesize etc. in the database table. You might want to consider using Python language for this.

旧夏天 2024-12-08 09:51:59
  1. 使用这些字段创建数据库表。
  2. Google 获取一个 php 脚本,该脚本获取目录/子目录/文件名列表。
  3. 将该信息存储在数据库中。
  1. Create db table with those fields.
  2. Google for a php script that gets the list of directories/subdirectories/filenames.
  3. Store that info in DB.
此生挚爱伱 2024-12-08 09:51:59

你可能需要这样的东西:

$files = scandir(...); // you need scandir recursively the path /music

foreach($files as $file) {
    $paths  = explode("/", $file);

    $artist = $paths[1];
    $album  = $paths[2];

    $sql    = "INSERT INTO table (artist, album, path) VALUES ('$artist', '$album', '$file');";
    // execute sql or save it into file...
}

you maybe need something like this:

$files = scandir(...); // you need scandir recursively the path /music

foreach($files as $file) {
    $paths  = explode("/", $file);

    $artist = $paths[1];
    $album  = $paths[2];

    $sql    = "INSERT INTO table (artist, album, path) VALUES ('$artist', '$album', '$file');";
    // execute sql or save it into file...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文