验证码页头乱码问题 求大神帮忙

浏览:423 发布日期:2016/03/07 分类:求助交流 关键字: 验证码 乱码 页头
HTML中的代码
<html>
<head>
<title>
33
</title>
</head>
<body>

<img src="http://localhost/verify/Index.php/home/Index/index" onclick="this.src=this.src+'?'" />

</body>

</html>

控制器中的verify

<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
ob_clean();
$Verify = new \Think\Verify();
$Verify->entry();

dump(U('index/index'));
dump(I('session.'));
$this->display();
}
}
?>

显示效果

最佳答案
评论( 相关
后面还有条评论,点击查看>>