<?php define(A, '12');
Notice: Use of undefined constant A - assumed 'A' 為啥會出現這個錯誤
定義的時候常數名稱要加引號,不然當常數調用後.例:define('A','12');或const A = '12'; echo A;
已經解決
定義的時候常數名稱要加引號,不然當常數調用後.例:define('A','12');或const A = '12'; echo A;
已經解決