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
https://forums.phpfreaks.com/topic/285315-accessible-from-iphone-app/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.