implode()の引数に配列以外の値が渡された場合に出力される警告メッセージ。

たとえば以下のような場合に出力されます。

<?php
$tmp = '';
$test = implode( ',' , $tmp);
?>

 

[対象]
PHP5.X