xPDOCacheManager.endsWith
xPDOCacheManager::endsWith
Sees if a string ends with a specific pattern or set of patterns. Useful for checking file extensions.
Syntax
API Docs: http://api.modxcms.com/xpdo/cache/xPDOCacheManager.html#endsWith
boolean endsWith (string $string, string|array $pattern)
Example
See if a file contains the s
$filename = '/my/site/test.flv'; if ($xpdo->cacheManager->endsWith($filename,'flv')) { echo 'Ends with flv!"; }
See Also
- xPDOCacheManager.copyFile
- xPDOCacheManager.copyTree
- xPDOCacheManager.delete
- xPDOCacheManager.deleteTree
- xPDOCacheManager.endsWith
- xPDOCacheManager.escapeSingleQuotes
- xPDOCacheManager.get
- xPDOCacheManager.getCachePath
- xPDOCacheManager.getCacheProvider
- xPDOCacheManager.matches
- xPDOCacheManager.replace
- xPDOCacheManager.writeFile
- xPDOCacheManager.set
- xPDOCacheManager.writeTree
Suggest an edit to this page on GitHub (Requires GitHub account. Opens a new window/tab).