<?php
ob_start();
$color = '#0000ff';
include('icons.svg.php');
$icons = ob_get_contents();
ob_end_clean();
?>
<!DOCTYPE html>
<html>
<head>
<title>Svg with Php</title>
<style>
.icon {
  width: 64px;
  height: 64px;
}
</style>
</head>
<body>
<?php echo $icons; ?>
<div id="share">
  <svg class="icon"><use xlink:href="#icon-facebook-box" /></svg>
  <svg class="icon"><use xlink:href="#icon-twitter-box" /></svg>
  <svg class="icon"><use xlink:href="#icon-google-plus-box" /></svg>
</div>
</body>
</html>