要使用PHP动态生成SVG图表,您可以遵循以下步骤:
chart.php
。<?php
$width = 600;
$height = 400;
?>
<!DOCTYPE html>
<html>
<head>
<title>Dynamic SVG Chart</title>
</head>
<body>
<svg width="<?php echo $width; ?>" height="<?php echo $height; ?>">
<defs>
元素,用于定义图表中使用的任何自定义形状或样式: <defs>
<!-- Add custom shapes or styles here -->
</defs>
<!-- Example: A simple bar chart -->
<?php
$data = [30, 50, 20, 80, 40];
$barWidth = 50;
$barPadding = 10;
for ($i = 0; $i < count($data); $i++) {
$x = $i * ($barWidth + $barPadding);
$y = $height - $data[$i];
$barHeight = $data[$i];
echo '<rect x="'.$x.'" y="'.$y.'" width="'.$barWidth.'" height="'.$barHeight.'" fill="blue" />';
}
?>
</svg>
</body>
</html>
这只是一个简单的示例,您还可以使用第三方库(如Chart.js、D3.js)来创建更复杂的图表。这些库提供了许多预定义的图表类型和选项,可以让您更容易地生成动态SVG图表。