我使用str_replace但不会将逗号更改为点。
<?php
$hostname = "localhost";
$username = "root";
$password = "";
$database = "grades";
if(isset($_GET["herolist"]) && isset($_GET["grade"]) && isset($_GET["weight"])){
$subject = $_GET["herolist"];
$grade = $_GET["grade"];
$weight = $_GET["weight"];
str_replace(',', '.', $grade);
echo $grade;
}
?>
我真的很困惑,为什么它不起作用,因为我看到的每个地方都看到这个选项用点替换逗号。
有人可以帮助我吗?
谢谢!
答案 0 :(得分:5)