1--TEST-- 2Bug #26878 (problem with multiple references to the same variable with different types) 3--FILE-- 4<?php 5 printf('Int: %1$d and as string: %1$s', 'some string'); 6 echo "\n"; 7?> 8--EXPECT-- 9Int: 0 and as string: some string 10