modifier.uid.php 387 B

1234567891011121314151617
  1. <?php
  2. // Written for GarageGames project generator Xcode files
  3. // Map a file path to a unique 23-digit number [unique for the life of the PHP execution]
  4. function smarty_modifier_uid($string)
  5. {
  6. static $uid = 1;
  7. static $map = array();
  8. if ( !array_key_exists( $string, $map ) )
  9. $map[$string] = sprintf( "%023X", $uid++ );
  10. return $map[$string];
  11. }
  12. ?>