本文整理汇总了PHP中TimberURLHelper::url_to_file_system方法的典型用法代码示例。如果您正苦于以下问题:PHP TimberURLHelper::url_to_file_system方法的具体用法?PHP TimberURLHelper::url_to_file_system怎么用?PHP TimberURLHelper::url_to_file_system使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TimberURLHelper
的用法示例。
在下文中一共展示了TimberURLHelper::url_to_file_system方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testURLToFileSystem
function testURLToFileSystem()
{
$url = 'http://example.org/wp-content/uploads/2012/06/mypic.jpg';
$file = TimberURLHelper::url_to_file_system($url);
$this->assertStringStartsWith(ABSPATH, $file);
$this->assertStringEndsWith('/2012/06/mypic.jpg', $file);
$this->assertNotContains($file, 'http://example.org');
$this->assertNotContains($file, '//');
}
示例2: delete_generated_files
/**
* Deletes the auto-generated files for resize and letterboxing created by Timber
* @param string $local_file ex: /var/www/wp-content/uploads/2015/my-pic.jpg
* or: http://example.org/wp-content/uploads/2015/my-pic.jpg
*/
static function delete_generated_files($local_file)
{
if (TimberURLHelper::is_absolute($local_file)) {
$local_file = TimberURLHelper::url_to_file_system($local_file);
}
$info = pathinfo($local_file);
$dir = $info['dirname'];
$ext = $info['extension'];
$filename = $info['filename'];
self::process_delete_generated_files($filename, $ext, $dir, '-[0-9999999]*', '-[0-9]*x[0-9]*-c-[a-z]*.');
self::process_delete_generated_files($filename, $ext, $dir, '-lbox-[0-9999999]*', '-lbox-[0-9]*x[0-9]*-[a-zA-Z0-9]*.');
}
示例3: delete_letterboxed_files
/**
* Deletes letterboxed versions of the supplied file name
*
* @param string $local_file
*/
static function delete_letterboxed_files($local_file)
{
if (TimberURLHelper::is_absolute($local_file)) {
$local_file = TimberURLHelper::url_to_file_system($local_file);
}
$info = pathinfo($local_file);
$dir = $info['dirname'];
$ext = $info['extension'];
$filename = $info['filename'];
$searcher = '/' . $filename . '-lbox-[0-9999999]*';
foreach (glob($dir . $searcher) as $found_file) {
$regexdir = str_replace('/', '\\/', $dir);
$pattern = '/' . $regexdir . '\\/' . $filename . '-lbox-[0-9]*x[0-9]*-[a-zA-Z0-9]*.' . $ext . '/';
$match = preg_match($pattern, $found_file);
if ($match) {
unlink($found_file);
}
}
}
示例4: delete_letterboxed_files_from_url
static function delete_letterboxed_files_from_url($src)
{
$local = TimberURLHelper::url_to_file_system($src);
self::delete_letterboxed_files($local);
}
示例5: init
/**
* @param int $iid
*/
function init($iid = false)
{
if (!is_numeric($iid) && is_string($iid)) {
if (strstr($iid, '://')) {
$this->init_with_url($iid);
return;
}
if (strstr($iid, ABSPATH)) {
$this->init_with_file_path($iid);
return;
}
if (strstr(strtolower($iid), '.jpg')) {
$this->init_with_relative_path($iid);
return;
}
}
$image_info = $this->get_image_info($iid);
$this->import($image_info);
$basedir = self::wp_upload_dir();
$basedir = $basedir['basedir'];
if (isset($this->file)) {
$this->file_loc = $basedir . DIRECTORY_SEPARATOR . $this->file;
} else {
if (isset($this->_wp_attached_file)) {
$this->file = reset($this->_wp_attached_file);
$this->file_loc = $basedir . DIRECTORY_SEPARATOR . $this->file;
} else {
if (isset($this->guid)) {
if (TimberURLHelper::is_absolute($this->guid)) {
$this->file_loc = TimberURLHelper::url_to_file_system($this->guid);
}
}
}
}
if (isset($image_info['id'])) {
$this->ID = $image_info['id'];
} else {
if (is_numeric($iid)) {
$this->ID = $iid;
}
}
if (isset($this->ID)) {
$custom = get_post_custom($this->ID);
foreach ($custom as $key => $value) {
$this->{$key} = $value[0];
}
} else {
if (is_array($iid)) {
TimberHelper::error_log('Not able to init in TimberImage with iid=');
TimberHelper::error_log($iid);
} else {
TimberHelper::error_log('Not able to init in TimberImage with iid=' . $iid);
}
}
}