我有这个
PHP代码块给了我错误:
Warning: Illegal string offset ‘iso_format_recent_works’ in
C:\xampp\htdocs\Manta\wp-content\themes\manta\functions.PHP on
line 1328
这是警告与之相关的代码:
if(1 == $manta_option['iso_format_recent_works']){ $theme_img = 'recent_works_thumbnail'; } else { $theme_img = 'recent_works_iso_thumbnail'; }
当我做一个var_dump($manta_option);我收到以下结果:
[“iso_format_recent_works”]=> string(1) “1”
我已经尝试将$manta_option [‘iso_format_recent_works’]转换为int但仍然遇到同样的问题.
任何帮助将不胜感激!
魔术词是:isset
原文链接:https://www.f2er.com/php/137113.html验证条目:
if(isset($manta_option['iso_format_recent_works']) && $manta_option['iso_format_recent_works'] == 1){ $theme_img = 'recent_works_thumbnail'; } else { $theme_img = 'recent_works_iso_thumbnail'; }