我不断收到此错误消息PHP注意使用未定义的常量_OTO_YIL_SEC - 在..............中假定为'_OTO_YIL_SEC'。
我的代码如下:
define('_OTO_YIL_SEC','Model Yılı Seç');
echo SelectGenel (_OTO_YIL_SEC,'yil','oto_yil','order by yil desc',intval($_GET['yil']) );
我如何使用定义值来不使用未定义的常量错误,当我尝试使用quetos但它不起作用时。当我使用引号时,它表现为字符串而不是值。
答案 0 :(得分:0)
define('_OTO_YIL_SEC','Model Yılı Seç');
echo SelectGenel (""._OTO_YIL_SEC."",'yil','oto_yil','order by yil desc',intval($_GET['yil']) );
“”。OTO_YIL_SEC。“”为我工作。