1   <?php
  2   /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3   // +----------------------------------------------------------------------+
  4   // | PHP Version 4                                                        |
  5   // +----------------------------------------------------------------------+
  6   // | Copyright (c) 1997-2004 The PHP Group                                |
  7   // +----------------------------------------------------------------------+
  8   // | This source file is subject to version 3.0 of the PHP license,       |
  9   // | that is bundled with this package in the file LICENSE, and is        |
  10   // | available at through the world-wide-web at                           |
  11   // | http://www.php.net/license/3_0.txt.                                  |
  12   // | If you did not receive a copy of the PHP license and are unable to   |
  13   // | obtain it through the world-wide-web, please send a note to          |
  14   // | license@php.net so we can mail you a copy immediately.               |
  15   // +----------------------------------------------------------------------+
  16   // | Authors: Aidan Lister <aidan@php.net>                                |
  17   // +----------------------------------------------------------------------+
  18   //
  19   // $Id: fprintf.php,v 1.1 2004-10-26 18:22:16 kostja Exp $
  20   //
  21  
  22  
  23   /**
  24    * Replace fprintf()
  25    *
  26    * @category    PHP
  27    * @package     PHP_Compat
  28    * @link        http://php.net/function.fprintf
  29    * @author      Aidan Lister <aidan@php.net>
  30    * @version     $Revision: 1.1 $
  31    * @since       PHP 5
  32    * @require     PHP 4.0.1 (trigger_error)
  33    */
  34   if (!function_exists('fprintf'))
  35   {
  36      function fprintf () {
  37           $args = func_get_args();
  38  
  39           if (count($args) < 2) {
  40               trigger_error ('Wrong parameter count for fprintf()', E_USER_WARNING);
  41               return null;
  42           }
  43  
  44           $resource_handle = array_shift($args);
  45           $format = array_shift($args);
  46  
  47           if (!is_resource($resource_handle)) {
  48               trigger_error ('fprintf(): supplied argument is not a valid stream resource', E_USER_WARNING);
  49               return false;
  50           }
  51  
  52           return fwrite($resource_handle, vsprintf($format, $args));
  53      }
  54   }
  55  
  56   ?>