本文介绍了变量声明中的逗号是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 MediaWiki PHP 源代码的 includes/parser/Parser.php
中找到了这个:
I've found this in includes/parser/Parser.php
of MediaWiki PHP source:
public function replaceInternalLinks2( &$s ) {
global $wgExtraInterlanguageLinkPrefixes;
static $tc = false, $e1, $e1_img;
//...
}
这个逗号分隔的列表是什么?$tc
接收什么值?
What is this comma delimited list? What value $tc
receives?
推荐答案
同:
static $tc = false;
static $e1;
static $e1_img;
所以 $tc
收到 false
.
这篇关于变量声明中的逗号是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!