CodeExplorer _octdec example
$dataUnserialized =
unserialize($data);
$data =
$dataUnserialized['data'
];
} $ext =
$this->_options
['file_extension'
];
if ($extension) $ext =
$extension;
$file =
rtrim($pathName, '/'
) . '/' .
$fileName .
$ext;
if ($this->_options
['file_locking'
]) { $result =
file_put_contents($file,
$data, LOCK_EX
);
} else { $result =
file_put_contents($file,
$data);
} @
chmod($file,
$this->
_octdec($this->_options
['cache_file_umask'
]));
if ($this->_tagged === null &&
$tagged =
$this->
getInnerCache()->
load(self::INNER_CACHE_NAME
)) { $this->_tagged =
$tagged;
} elseif ($this->_tagged === null
) { $this->_tagged = array
();
} if (!
isset($this->_tagged
[$id])) { $this->_tagged
[$id] = array
();
} if (!
isset($this->_tagged
[$id]['tags'
])) { $this->_tagged
[$id]['tags'
] = array
();
}