QdmailがPHP7.1からcount()でエラーが出る
count()関数が数えられる配列、オブジェクト以外の引数を取ると警告を表示するようになりました。そのためNULLで引数をとる可能性がある部分にis_array()を追加するなど修正が必要となりました。
1 2 3 4 5 6 7 |
<?php unset( $stack_bcc ) ; //if( 0 != count( $this->allways_bcc ) ){ if( is_array( $this->allways_bcc ) && 0 != count( $this->allways_bcc ) ){ $stack_bcc = $this->bcc ; $this->bcc( $this->allways_bcc , null , true ); } |
1 2 3 4 5 6 7 8 9 |
<?php if( !$add ){ $this->{$section} = $addr; }else{ $this->{$section} = array_merge( $this->{$section} , $addr ); } //return ( 0 != count( $addr ) ); return ( is_array($addr) && 0 != count( $addr ) ); |