Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网站上使用评级系统,并在 php.ini 中调用值“4_5”。
例子:
<span class="rating"><?php echo $meta['rating']; ?></span>
有什么办法可以用这个...
$name = str_replace('_', '.', $name);
调用后替换下划线?
PS。我对 php 和 html 很陌生,但到处都在搜索这个!
回显后,您无法修改 PHP 中的值。但是您甚至不需要,因为您可以像这样在 $meta['rating'] 周围使用 str_replace :
<span class="rating"><?php echo str_replace('_', '.', $meta['rating']); ?></span>
这会将 4_5 显示为 4.5