1--TEST-- 2Bug #34214 (base64_decode() does not properly ignore whitespace) 3--FILE-- 4<?php 5$txt = 'Zm9vYmFyIG 6 Zvb2Jhcg=='; 7echo base64_decode($txt), "\n"; 8?> 9--EXPECT-- 10foobar foobar 11