作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我有了这段代码
<p id="number_of_stations" class="text left"><?php $_GET['count'] != "" ? print "{$_GET['count']} Stations" : print "Number of Stations" ?></p>
$_GET['count'] 将是 1、2、3、4 或 5,我需要打印出以下内容
1 Station
2 Stations
3 Stations
4 Stations
5 Stations
但是我上面的代码总是打印复数形式而不是单数
最佳答案
简化:
echo "$count Station" . ($count == 1 ? null : 's');
如果您经常使用它,您可能想为此创建一个函数。如果你正在寻找任何单词的自动复数形式,你需要写一个 Inflector .
关于php - 我如何在 php 中复数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3809157/
我是一名优秀的程序员,十分优秀!