Php7.1致命错误:字符串

时间:2016-12-06 16:54:24

标签: php wordpress

我构建了一个功能主题选项wordpress。

但我现在收到以下错误,我做错了什么?

  if(isset($thm_options['custom_font1_eot']))
    $w_custom_font1_src[] = "url('{$thm_options['custom_font1_eot']['url']}?#iefix') format('embedded-opentype')";

  if(isset($thm_options['custom_font1_woff']))   
    $w_custom_font1_src[] = "url('{$thm_options['custom_font1_woff']['url']}') format('woff')";

  if(isset($thm_options['custom_font1_ttf']))
    $w_custom_font1_src[] = "url('{$thm_options['custom_font1_ttf']['url']}') format('truetype')";
  

致命错误:

中的字符串不支持[]运算符

我错过了什么代码?

1 个答案:

答案 0 :(得分:8)

您可能已将此变量$w_custom_font1_src用作程序中其他位置的string

现在重新初始化为array

 $w_custom_font1_src =  array();