WP_CLI

FileCache::filename()protectedWP-CLI 1.0

Filename from key

Method of the class: FileCache{}

No Hooks.

Return

String. filename

Usage

// protected - for code of main (parent) or child class
$result = $this->filename( $key );
$key(string) (required)
-

FileCache::filename() code WP-CLI 2.8.0-alpha

protected function filename( $key ) {
	return $this->root . $this->validate_key( $key );
}