本文整理汇总了PHP中Num::format_bytes方法的典型用法代码示例。如果您正苦于以下问题:PHP Num::format_bytes方法的具体用法?PHP Num::format_bytes怎么用?PHP Num::format_bytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Num
的用法示例。
在下文中一共展示了Num::format_bytes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_format_bytes
/**
*
* @see Num::format_bytes
*/
public function test_format_bytes()
{
$output = Num::format_bytes('204800');
$expected = '200 KB';
$this->assertEquals($expected, $output);
$output = Num::format_bytes('invalid');
$this->assertFalse($output);
}
示例2: isset
<?php
echo $file->original_name;
?>
</a></h5>
<?php
}
?>
<p class="subinfo<?php
if ($is_subinfo_pull_right) {
?>
pull-right<?php
}
?>
">
<?php
echo Num::format_bytes($file->size);
?>
<?php
echo Html::anchor('#', '<i class="glyphicon glyphicon-trash"></i>', $delete_btn_attr);
?>
</p>
<?php
if ($is_display_textarea) {
?>
<p><?php
echo Form::textarea(sprintf($prefix . '_description[%d]', $file->id), isset($file->description) ? $file->description : '', array('rows' => 2, 'placeholder' => '写真の説明', 'class' => 'form-control', 'id' => sprintf($prefix . '_description_%d', $file->id)));
?>
</p>
<?php
}
?>
示例3: array_merge
</div><!-- .form-group -->
<div class="form-group">
<label class="sr-only" for="<?php
echo $selects['name'];
?>
"><?php
echo $selects['label'];
?>
</label>
<?php
$atters = array_merge(array('class' => 'form-control input-sm'), $selects['atters']);
echo Form::select($selects['name'], $selects['value'], $selects['options'], $atters);
if (FBD_UPLOAD_MAX_FILESIZE) {
?>
<span class="text-muted"><?php
echo Num::format_bytes(FBD_UPLOAD_MAX_FILESIZE);
?>
まで</span>
<?php
}
?>
</div><!-- .form-group -->
</form>
<?php
}
?>
</div><!-- fileinput -->
</div><!-- #upload_files -->
<?php
if ($upload_type == 'img') {