如何修复PHP中的警告非法字符串偏移量

前端之家收集整理的这篇文章主要介绍了如何修复PHP中的警告非法字符串偏移量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个 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

验证条目:

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';
}
原文链接:https://www.f2er.com/php/137113.html

猜你在找的PHP相关文章