有谁知道我为什么会遇到这个问题。我怀疑它与 UTF8 和 PHP 有关。我在这里有这段代码:
echo '<div id="container"><iframe src="http://statsheet.com/mcb/players/player/'.$this->view->string()->chunk($value->value).'" scrolling="no" style="border: 0px none; margin-left: -30px; height: 859px; margin-top: -333px; width: 1000px;"></iframe></div>';
.$this->view->string()->chunk($value->value)。
这会从与用户 ID 和个人资料页面关联的数据库中获取值
现在,问题在于存储在数据库中的值。目前,该值为北卡罗来纳/charls-matich。
输出显示链接断开。但是,如果我将链接更改为http://statsheet.com/mcb/players/player/north-carolina/charls-/
数据库中的链接,我将更north-carolina/charls-matich
改为简单的 matich,而不是得到正确的输出。
这里有什么问题?