This commit is contained in:
Marcus Boerger 2004-05-18 21:27:08 +00:00
parent c8e72410be
commit 007a076cd0

View file

@ -1,13 +1,12 @@
--TEST-- --TEST--
Formatted print functions Formatted print functions
--POST--
--GET--
--FILE-- --FILE--
<?php <?php
error_reporting(0); error_reporting(0);
$fp = fopen("php://stdout", "w") or die("Arrggsgg!!"); $fp = fopen("php://stdout", "w") or die("Arrggsgg!!");
$x = fprintf($fp, "fprintf test 1:%.5s\n", "abcdefghij"); $x = fprintf($fp, "fprintf test 1:%.5s", "abcdefghij");
echo "\n";
var_dump($x); var_dump($x);
printf("printf test 1:%s\n", "simple string"); printf("printf test 1:%s\n", "simple string");