mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 12:44:46 +00:00
18 lines
387 B
PHP
18 lines
387 B
PHP
<?php
|
|
|
|
// Written for GarageGames project generator Xcode files
|
|
|
|
// Map a file path to a unique 23-digit number [unique for the life of the PHP execution]
|
|
function smarty_modifier_uid($string)
|
|
{
|
|
static $uid = 1;
|
|
static $map = array();
|
|
|
|
if ( !array_key_exists( $string, $map ) )
|
|
$map[$string] = sprintf( "%023X", $uid++ );
|
|
|
|
return $map[$string];
|
|
}
|
|
|
|
?>
|