8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

非法字符串偏移量警告 PHP

DarthGizka 1月前

121 0

将我的 php 版本更新到 5.4.0-3 后,我收到一个奇怪的 PHP 错误。我有这个数组:Array( [host] => 127.0.0.1 [port] => 11211) 当我尝试像这样访问它时,我收到奇怪的

将我的 php 版本更新到 5.4.0-3 后,出现一个奇怪的 PHP 错误。

我有这个数组:

Array
(
    [host] => 127.0.0.1
    [port] => 11211
)

当我尝试像这样访问它时,我收到奇怪的警告

 print $memcachedConfig['host'];
 print $memcachedConfig['port'];


 Warning: Illegal string offset 'host' in ....
 Warning: Illegal string offset 'port' in ...

我真的不想仅仅编辑我的 php.ini 并重新设置错误级别。

帖子版权声明 1、本帖标题:非法字符串偏移量警告 PHP
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由DarthGizka在本站《codeigniter》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 从 PHP 5.4 开始,我们需要传递函数期望的相同数据类型值。例如:

    function testimonial($id); // This function expects $id as an integer
    

    调用此函数时,如果提供了如下字符串值:

    $id = $array['id']; // $id is of string type
    testimonial($id); // illegal offset warning
    

    由于数据类型不匹配,这将生成非法偏移警告。为了解决这个问题,你可以使用 settype :

    $id = settype($array['id'],"integer"); // $id now contains an integer instead of a string
    testimonial($id); // now running smoothly
    
返回
作者最近主题: