Here is an example:
PHP:::
JavaScript
x
<?php
$tag = id3_get_tag( "path/to/example.mp3" );
print_r($tag);
?>
response
JavaScript
Array
(
[title] => DN-38416
[artist] => Re:Legion
[album] => Reflections
[year] => 2004
[genre] => 19
)
I want to set this like
JavaScript
$title => DN-38416
$artist => Re:Legion
$album => Reflections
Advertisement
Answer
If you mean to assign value to new variables, simply do it using the assignment operator =
in PHP.
JavaScript
$title = $tag["title"];
$artist = $tag["artist"];
// ... and so on
Read more about assignment operator in PHP.