1--TEST-- 2Bug #79836 ($a .= $a should coerce to string) 3--FILE-- 4<?php 5$a = false; 6$a .= $a; 7var_dump($a); 8?> 9--EXPECT-- 10string(0) "" 11