Jump to content

Accessible from iPhone App


Fijiannn

Recommended Posts

Hi I have this code below. I'm using getid3 to get the file name, artist, and title of the songs I have in the $SongsFolder. What I'm trying to do is make the artist and title accessible so I can get this info in my iPhone app for example. I figure I would replace echo with something else but how would I properly do that? I'm really new to PHP and more of an iPhone app developer so a little help would be nice. 

<?php
    require_once("getid3/getid3.php");
    $getID3 = new getID3;
    
    $SongsFolder = "Songs";
    $Songs = glob($SongsFolder."/*.mp3");
    
    foreach ($Songs as $Song) {
        set_time_limit(30);
        $ThisFileInfo = $getID3->analyze($Song);
        getid3_lib::CopyTagsToComments($ThisFileInfo);
        
        echo 'File name: '.$ThisFileInfo['filenamepath'].'<br>';
        echo 'Artist: '.(!empty($ThisFileInfo['comments_html']['artist']) ? implode('<BR>', $ThisFileInfo['comments_html']['artist']) : ' ').'<br>';
        echo 'Title: '.(!empty($ThisFileInfo['comments_html']['title']) ? implode('<BR>', $ThisFileInfo['comments_html']['title'])  : ' ').'<br>';
    }
?>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.