cachedTransformationPath() public method

*! \private \static \return the path of the cached transformation tables.
コード例 #1
0
 function cacheFilePath($prefix, $suffix, $key)
 {
     $path = eZCharTransform::cachedTransformationPath();
     if (!file_exists($path)) {
         eZDir::mkdir($path, false, true);
     }
     return $path . '/' . $prefix . sprintf("%u", $key) . $suffix . '.ctt.php';
     // ctt=charset transform table
 }