例如
<?php
if ($a > $b) {
{{ graph:top_coders_one }}
} elseif ($a == $b) {
{{ graph:daily_commits_two }}
} else {
{{ graph:commit_stream_two }}
}
?>
我的插件函数在php if / else
中无法正常工作答案 0 :(得分:1)
{{ if a > b }}
{{ graph:top_coders_one }}
{{ else }}
{{ graph:top_coders_two }}
{{ endif }}
尝试不使用<?php
代码