ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-16 21:59:52
Editing: Cache.php
Cancel
Save Changes
<?php /** * Swift Mailer Runtime caching base component. * Please read the LICENSE file * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Cache * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/ClassLoader.php"; /** * The interface for any cache mechanisms to follow * @package Swift_Cache * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_Cache { /** * Append bytes to the cache buffer identified by $key * @param string The Cache key * @param string The bytes to append */ function write($key, $data) {} /** * Clear out the buffer for $key * @param string The cache key */ function clear($key) {} /** * Check if there is something in the cache for $key * @param string The cache key * @return boolean */ function has($key) {} /** * Read bytes from the cached buffer and seek forward in the buffer * Returns false once no more bytes are left to read * @param int The number of bytes to read (may be ignored) * @return string */ function read($key, $size=null) {} /** * A factory method to return an output stream object for the relevant location in the cache * @param string The cache key to fetch the stream for * @return Swift_Cache_OutputStream */ function &getOutputStream($key) { Swift_ClassLoader::load("Swift_Cache_OutputStream"); $os =& new Swift_Cache_OutputStream($this, $key); return $os; } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete