Heim >Backend-Entwicklung >PHP-Tutorial >const变量和连接符的问题

const变量和连接符的问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-06 13:52:271642Durchsuche

当const关键字定义的变量与字符串拼接,且赋值给另一个const变量时,

<code>报syntax error, unexpected '.', expecting ',' or ';'
</code>

代码如下

<code>const a = '你好';
const b = a.'certs/';//直接报错</code>

麻烦各位帮忙一下

回复内容:

当const关键字定义的变量与字符串拼接,且赋值给另一个const变量时,

<code>报syntax error, unexpected '.', expecting ',' or ';'
</code>

代码如下

<code>const a = '你好';
const b = a.'certs/';//直接报错</code>

麻烦各位帮忙一下

没啥可帮忙的,语法不允许这样写。
const 定义不能使用运算符、变量这类东西。
再说了a是什么东西,至少也要 const b = self::a . 'certs/'吧,虽然一样非法。

你这个缺少上下文啊,在类里面才能这样用,外面的php常量用define
PHP常量

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn