PHP 8 compatibility
[m6w6/ext-psi] / tests / stdio / printf001.phpt
1 --TEST--
2 printf
3 --ENV--
4 LC_ALL=C
5 --INI--
6 psi.directory={PWD}/../../psi.d:{PWD}
7 --FILE--
8 ===TEST===
9 <?php
10 psi\printf("%.*s %ld %f\n", 5, "hello world", 123456789, .987654321);
11 flush();
12 ?>
13 ===DONE===
14 --EXPECT--
15 ===TEST===
16 hello 123456789 0.987654
17 ===DONE===