当前位置: 首页>>代码示例>>PHP>>正文


PHP phpThumb::file_exists_ignoreopenbasedir方法代码示例

本文整理汇总了PHP中phpThumb::file_exists_ignoreopenbasedir方法的典型用法代码示例。如果您正苦于以下问题:PHP phpThumb::file_exists_ignoreopenbasedir方法的具体用法?PHP phpThumb::file_exists_ignoreopenbasedir怎么用?PHP phpThumb::file_exists_ignoreopenbasedir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在phpThumb的用法示例。


在下文中一共展示了phpThumb::file_exists_ignoreopenbasedir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: elseif

    } elseif ($IMversionAge < 86400 * 365 * 3) {
        echo 'green';
    } elseif ($IMversionAge < 86400 * 365 * 4) {
        echo 'darkgreen';
    } else {
        echo 'olive';
    }
} elseif (!empty($ServerInfo['gd_string'])) {
    echo 'orange';
} else {
    echo 'red';
}
echo ';">';
echo '<div style="color: navy; font-family: monospace;">' . htmlentities($phpThumb->config_imagemagick_path);
echo ' <span style="cursor: help;" title="file_exists"                  >[' . intval(@file_exists($phpThumb->config_imagemagick_path)) . ']</span> ';
echo ' <span style="cursor: help;" title="file_exists_ignoreopenbasedir">[' . intval($phpThumb->file_exists_ignoreopenbasedir($phpThumb->config_imagemagick_path)) . ']</span> ';
echo ' <span style="cursor: help;" title="is_file"                      >[' . intval(@is_file($phpThumb->config_imagemagick_path)) . ']</span> ';
echo ' <span style="cursor: help;" title="is_readable"                  >[' . intval(@is_readable($phpThumb->config_imagemagick_path)) . ']</span> ';
echo ' <span style="cursor: help;" title="is_executable"                >[' . intval(@is_executable($phpThumb->config_imagemagick_path)) . ']</span> ';
echo '</div>';
echo '<div style="color: blue; font-family: monospace;">' . htmlentities($phpThumb->ImageMagickCommandlineBase()) . '</div>';
echo $ServerInfo['im_version'] ? $ServerInfo['im_version'] : 'n/a';
echo $IMreleaseDate ? '<br><br>This version of ImageMagick is ' . NiceTimeFormatting($IMversionAge) . ' old<br>(see <a href="http://www.imagemagick.org/">www.imagemagick.org</a> for new versions)' : '';
echo '</th><td>ImageMagick is faster than GD, can process larger images without PHP memory_limit issues, can resize animated GIFs. phpThumb can perform most operations with ImageMagick only, even if GD is not available.</td></tr>';
echo '<tr><th>ImageMagick features:</th>';
if ($ServerInfo['im_version']) {
    $GDfeatures['red'] = array('help', 'thumbnail', 'resize', 'crop', 'repage', 'coalesce', 'gravity', 'background', 'interlace', 'flatten', 'border', 'bordercolor', 'dither', 'quality');
    $GDfeatures['orange'] = array('version', 'blur', 'colorize', 'colors', 'colorspace', 'contrast', 'contrast-stretch', 'edge', 'emboss', 'fill', 'flip', 'flop', 'gamma', array('gaussian', 'gaussian-blur'), 'level', 'modulate', 'monochrome', 'negate', 'normalize', 'rotate', 'sepia-tone', 'threshold', 'unsharp');
    echo '<th colspan="2">|';
    foreach ($GDfeatures as $missingcolor => $features) {
        foreach ($features as $dummy => $feature) {
开发者ID:madberry,项目名称:WhiteLabelTransfer,代码行数:31,代码来源:phpThumb.demo.check.php


注:本文中的phpThumb::file_exists_ignoreopenbasedir方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。