[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/SimplePie/src/Cache/ -> MySQL.php (summary)

(no description)

File Size: 344 lines (14 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

MySQL:: (6 methods):
  __construct()
  save()
  load()
  mtime()
  touch()
  unlink()


Class: MySQL  - X-Ref

Caches data to a MySQL database

Registered for URLs with the "mysql" protocol

For example, `mysql://root:password@localhost:3306/mydb?prefix=sp_` will
connect to the `mydb` database on `localhost` on port 3306, with the user
`root` and the password `password`. All tables will be prefixed with `sp_`

__construct(string $location, string $name, $type)   X-Ref
Create a new cache object

param: string $location Location string (from SimplePie::$cache_location)
param: string $name Unique ID for the cache
param: Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data

save($data)   X-Ref
Save data to the cache

return: bool Successfulness
param: array<string>|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property

load()   X-Ref
Retrieve the data saved to the cache

return: array<string>|false Data for SimplePie::$data

mtime()   X-Ref
Retrieve the last modified time for the cache

return: int|false Timestamp

touch()   X-Ref
Set the last modified time to the current time

return: bool Success status

unlink()   X-Ref
Remove the cache

return: bool Success status



Generated : Wed Sep 17 08:20:04 2025 Cross-referenced by PHPXref