欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

奇怪的数组问题

程序员文章站 2024-04-05 14:45:54
...
private function defaults(){
    return array(
        'allowFileManager' => true,
        'allowMediaUpload' => true,
        'allowFlashUpload' => true,
        'allowImageUpload' => true,
        'shadowMode' => false,
        'width' => '100%',
        'height' => '350px',
        'uploadJson' => 'test',
    );
}
print_r($this->defaults());exit;

奇怪的数组问题
打印处来uploadJson为毛是空, 如果把uploadJson 名字换下 是没问题的

回复内容:

private function defaults(){
    return array(
        'allowFileManager' => true,
        'allowMediaUpload' => true,
        'allowFlashUpload' => true,
        'allowImageUpload' => true,
        'shadowMode' => false,
        'width' => '100%',
        'height' => '350px',
        'uploadJson' => 'test',
    );
}
print_r($this->defaults());exit;

奇怪的数组问题
打印处来uploadJson为毛是空, 如果把uploadJson 名字换下 是没问题的

http://3v4l.org/4iPth ,书读的少不要骗我啦,其实肯定还是你其他代码的原因,仔细找找咯。

相关标签: php