我正在本地建设然后上传到制作中,但是在制作中我出现了一些变量,但我不知道它来自哪里。
这是图片
所以" 0"如果购物车不为空,将出现,如果购物车包含2个项目" 0"将是两个。
我认为它来自会话但是当我从yii2调试中检查会话时,没有会话值是" 0&#34 ;;
&#34; 0&#34;在<!DOCTYPE html>
0</br>0</br>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-control" content="private,max-age:3600">
我的名为utama.php
的视图是部分代码utama.php
<?php
use yii\helpers\Url;
use backend\modules\company\assets\HomeAsset;
use yii\widgets\Breadcrumbs;
use yii\helpers\Html;
use frontend\assets\FoAsset;
use yii\helpers\VarDumper;
use yii\widgets\ActiveForm;
use yii\base\View;
use common\models\TbCustomer;
use yii\web\JsExpression;
use common\models\TbKategori;
use common\component\BeoHelper;
use common\models\TbSubKategori1;
use common\models\TbSubKategori2;
use common\models\TbMenuPromo;
use yii\authclient\widgets\AuthChoice;
use kartik\typeahead\Typeahead;
use common\models\EAktorType;
use common\models\VwProdukAgent;
$aset = FoAsset::register($this);
?>
//how come "0" can be here?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-control" content="private,max-age:3600">
so on....
如果我不知道从哪里来,或者我只是忘记了回声在哪里。
我可以找到它的来源并将其删除吗?
如果您需要更多信息,请告诉我
答案 0 :(得分:0)
因为它出现在<!DOCTYPE html>
之前,所以它来自CartController
操作index
,echo
会找到它。