本文整理汇总了PHP中Entry::cacheContent方法的典型用法代码示例。如果您正苦于以下问题:PHP Entry::cacheContent方法的具体用法?PHP Entry::cacheContent怎么用?PHP Entry::cacheContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Entry
的用法示例。
在下文中一共展示了Entry::cacheContent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: importEntry
public static function importEntry($path)
{
$info = self::parsePath($path);
// do the database part
$entry = new Entry((int) $info['id']);
$entry->name = $info['name'];
$entry->simple = $info['simple'];
$entry->assignHeaders();
$entry->save();
// do the file system part
$entry->cacheContent();
}
示例2: importEntry
public static function importEntry($path)
{
$parts = explode('/', $path);
$info = explode('_', $parts[count($parts) - 2]);
// do the database part
$entry = new Entry((int) $info[0]);
$entry->name = $info[1];
$entry->assignHeaders();
$entry->save();
// do the file system part
$entry->cacheContent();
}
示例3: importEntry
public static function importEntry($path)
{
$parts = explode('/', $path);
$dir = $parts[count($parts) - 2];
$id = (int) substr($dir, 0, strpos($dir, '_'));
$name = substr($dir, strpos($dir, '_') + 1);
// do the database part
$entry = new Entry($id);
$entry->name = $name;
$entry->assignHeaders();
$entry->save();
// do the file system part
$entry->cacheContent();
}