Sorry this isn't an answer to the exact question being asked, but I'd suggest that there are better ways of achieving this without resorting to storing a date in a temporary file, even if you don't want to use the database.
Have you considered using Redis or Memcache? There are Symfony2 bundles for both of these that should make life a bit easier, although you'd need to ensure that both are installed and running on your server.
If you were to do this using Redis, for example, you could make use of the EXPIRE command to specify how long you want the value (in this case your date) to exist. Here's the rough idea:
public function yourMethod()
{
$date = $this->getDate();
/* ... */
}
protected function getDate()
{
/** @var $redis \Predis\Client */
$redis = $this->container->get('snc_redis.default'); // TODO inject as a dependency
$date = $redis->get('your_key');
// Will be empty if requested after the key has expired.
// Set a new date value in the key
if (empty($date)) {
$date = '2013-01-17 13:30:00'; // Not sure where you want to get this from
$redis->set('your_key', $date);
$secondsToLive = 259200; // 3 days
$redis->expire('your_key', $secondsToLive);
}
return $date;
}