Arquivos
hhvm/hphp/test/vm/sb_overflow.php
T
mwilliams 63fd7967b2 Fix StringBuffer::resize()
capacity doesnt include the terminating null, so len is
allowed to grow to capacity (not capacity - 1).
2013-03-19 14:11:11 -07:00

9 linhas
331 B
PHP

<?php
var_dump(iconv_mime_decode(
'=?utf-8?Q?...=20.....=3A=20...=20.....=20....=20'.
'.......=20...=20.....=2C=20....=20.......=E2=80=99s'.
'=20....=20......=20..=20...=E2=80=99s=20....=20.....'.
'=3F=2C=20...=20.......=20..=20.......=20...'.
'=20........?=', 2, 'UTF-8'));