Strict Standards php error

后端 未结 3 2031
甜味超标
甜味超标 2021-01-26 18:27

I have a small issue with my script.

I\'m getting Strict Standards: Only variables should be passed by reference in

if( $checkDNS && ($domain = e         


        
3条回答
  •  既然无缘
    2021-01-26 19:11

    From the manual:

    mixed end ( array &$array )
    

    end takes the array by reference and move the internal pointer. Your array is the function output, so its unable to correctly modify the array by reference.

提交回复
热议问题