0

例子

<?php
if ($a > $b) {
    {{ graph:top_coders_one }}
} elseif ($a == $b) {
    {{ graph:daily_commits_two }}
} else {
    {{ graph:commit_stream_two }}
}
?>

我的插件功能在 php if/else 中不起作用

4

1 回答 1

1
{{ if a > b }}
  {{ graph:top_coders_one }}
{{ else }}
  {{ graph:top_coders_two }}
{{ endif }}

不带<?php标签试试

于 2013-04-23T21:02:36.930 回答