Re: Re: Pixmicat!- Pio debugging record under php7.4 1

From Trivial Dolphin, 1 Year ago, written in PHP, viewed 252 times. This paste is a reply to Re: Pixmicat!- Pio debugging record under php7.4 1 from Stained Pheasant - view diff
URL https://pastebin.vip/view/abe07e84
  1. 在error.log日志文件里面出现的错误提示,虽然不影响正常运行,但是最好去掉
  2.  
  3.  
  4.  
  5. 3. ERROR Global - Fatal error caught: #8192: Array and string offset access syntax with curly braces is deprecated in /pixmicat-develop/lib/lib_common.php on line 165
  6.  
  7. 这是因为php7之后不再支持使用大括号访问数组以及字符串的偏移
  8.  
  9. $chars = ord($str{$i});
  10.  
  11. 改为
  12.  
  13. $chars = ord($str[$i]);

Replies to Re: Re: Pixmicat!- Pio debugging record under php7.4 1 rss

Title Name Language When
Re: Re: Re: Pixmicat!- Pio debugging record under php7.4 1 Tacky Plover php 1 Year ago.

Reply to "Re: Re: Pixmicat!- Pio debugging record under php7.4 1"

Here you can reply to the paste above

captcha

https://burned.cc - Burn After Reading Website