本文整理汇总了PHP中Num类的典型用法代码示例。如果您正苦于以下问题:PHP Num类的具体用法?PHP Num怎么用?PHP Num使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Num类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: set_max_size
/**
*
* @param integer $size
*/
public function set_max_size($size)
{
if (empty($size)) {
$size = Num::bytes('1MiB');
}
$this->max_size = (int) $size;
}
开发者ID:ZerGabriel,项目名称:cms-1,代码行数:11,代码来源:file.php
示例2: __set
/**
* Override __set() to handle time.
*
* @param string $key
* @param mixed $value
*/
public function __set($key, $value)
{
if ($key === 'size_time' && !is_numeric($value)) {
$value = Num::seconds($value);
}
parent::__set($key, $value);
}
开发者ID:anqh,项目名称:anqh,代码行数:13,代码来源:track.php
示例3: action_browse
/**
* Action: browse tracks
*/
public function action_browse()
{
$type = $this->request->param('music') == 'mixtapes' ? Model_Music_Track::TYPE_MIX : Model_Music_Track::TYPE_TRACK;
$genre = $this->request->param('genre');
// Load requested music
$limit = 25;
$music = Model_Music_Track::factory();
$count = $music->count_by_type($type, $genre);
// Build page
$this->view = View_Page::factory($type == Model_Music_Track::TYPE_MIX ? __('Mixtapes') : __('Tracks'));
// Set actions
$this->_set_page_actions();
$this->view->tab = $this->request->param('music');
// Filters
$this->view->add(View_Page::COLUMN_CENTER, $this->section_filters($this->request->param('music'), $genre));
// Pagination
$this->view->add(View_Page::COLUMN_CENTER, $pagination = $this->section_pagination($limit, $count));
$this->view->subtitle = __($pagination->total_pages == 1 ? ':pages page' : ':pages pages', array(':pages' => Num::format($pagination->total_pages, 0)));
// Browse
$tracks = $music->find_by_type($type, $genre, $limit, $pagination->offset);
$this->view->add(View_Page::COLUMN_CENTER, $this->section_browse($tracks));
// Pagination
$this->view->add(View_Page::COLUMN_CENTER, $pagination);
// New
$this->view->add(View_Page::COLUMN_RIGHT, $this->section_list($music->find_new(Model_Music_Track::TYPE_MIX, 10), __('New mixtapes')));
$this->view->add(View_Page::COLUMN_RIGHT, $this->section_list($music->find_new(Model_Music_Track::TYPE_TRACK, 10), __('New tracks')));
}
开发者ID:anqh,项目名称:anqh,代码行数:30,代码来源:music.php
示例4: verbose
public function verbose($value)
{
$value = $this->value($value);
if ($this->decimals) {
$value = Num::format($value, $this->decimals);
}
return (string) $value;
}
开发者ID:shadowhand,项目名称:hive,代码行数:8,代码来源:float.php
示例5: currency
/**
* Get currency based on date. Used for currency chances such as Euro.
*
* @static
* @param float $amount
* @param integer $date
* @return string
*/
public static function currency($amount, $date = null)
{
static $change;
// Show decimals only if required
$amount = $amount == (int) $amount ? (int) $amount : Num::format($amount, 2, true);
// Finland switched to Euro on January 1st, 2002
if (!$change) {
$change = mktime(0, 0, 0, 1, 1, 2002);
}
$currency = !$date || $date >= $change ? '€' : 'mk';
return $amount . $currency;
}
开发者ID:anqh,项目名称:anqh,代码行数:20,代码来源:num.php
示例6: content
/**
* Render view.
*
* @return string
*/
public function content()
{
ob_start();
// Title
if ($this->area->description) {
echo $this->area->description . '<hr>';
}
if ($this->area->topic_count) {
// Area has topics
$last_topic = $this->area->last_topic();
$last_poster = $last_topic->last_post()->author();
?>
<div class="media">
<div class="pull-left">
<?php
echo HTML::avatar($last_poster ? $last_poster['avatar'] : null, $last_poster ? $last_poster['username'] : null, false);
?>
</div>
<div class="media-body">
<small class="ago"><?php
echo HTML::time(Date::short_span($last_topic->last_posted, true, true), $last_topic->last_posted);
?>
</small>
<?php
echo $last_poster ? HTML::user($last_poster) : HTML::chars($last_topic->last_poster);
?>
<br>
<?php
echo HTML::anchor(Route::model($last_topic, '?page=last#last'), Forum::topic($last_topic), array('title' => HTML::chars($last_topic->name)));
?>
<br />
</div>
</div>
<small class="stats muted">
<i class="icon-comments"></i> <?php
echo Num::format($this->area->topic_count, 0);
?>
<i class="icon-comment"></i> <?php
echo Num::format($this->area->post_count, 0);
?>
</small>
<?php
} else {
// Empty area
echo __('No topics yet.');
}
return ob_get_clean();
}
开发者ID:anqh,项目名称:anqh,代码行数:56,代码来源:hovercard.php
示例7: rules
public function rules()
{
return ['amount' => function ($value) {
if ($value <= 0) {
return 'Еще нет средств на расход';
}
$amount = $this->model('Salary')->getReady();
$amount = intval($amount);
$value = intval($value);
if ($amount !== $value) {
return 'Сумма изменилась должно быть:' . \Num::format($amount);
}
}];
}
开发者ID:Kulkow,项目名称:employee,代码行数:14,代码来源:SalaryRequest.php
示例8: validate
public function validate(Jam_Validated $model, $attribute, $value)
{
if ($value and !$value->is_empty() and $value->source()) {
if ($error = $value->source()->error()) {
$model->errors()->add($attribute, 'uploaded_native', array(':message' => $error));
} elseif (!is_file($value->file())) {
$model->errors()->add($attribute, 'uploaded_is_file');
}
if ($this->only and !in_array(strtolower(pathinfo($value->filename(), PATHINFO_EXTENSION)), $this->valid_extensions())) {
$model->errors()->add($attribute, 'uploaded_extension', array(':extension' => join(', ', $this->valid_extensions())));
}
if ($this->minimum_size or $this->maximum_size or $this->exact_size) {
$size = @filesize($value->file());
if ($this->minimum_size and $minimum_size = Num::bytes($this->minimum_size) and (int) $size < (int) $minimum_size) {
$model->errors()->add($attribute, 'uploaded_minimum_size', array(':minimum_size' => $this->minimum_size));
}
if ($this->maximum_size and $maximum_size = Num::bytes($this->maximum_size) and (int) $size > (int) $maximum_size) {
$model->errors()->add($attribute, 'uploaded_maximum_size', array(':maximum_size' => $this->maximum_size));
}
if ($this->exact_size and $exact_size = Num::bytes($this->exact_size) and (int) $size !== (int) $exact_size) {
$model->errors()->add($attribute, 'uploaded_exact_size', array(':exact_size' => $this->exact_size));
}
}
if ($this->minimum_width or $this->minimum_height or $this->maximum_width or $this->maximum_height or $this->exact_width or $this->exact_height) {
$dims = @getimagesize($value->file());
if ($dims) {
list($width, $height) = $dims;
if ($this->exact_width and (int) $width !== (int) $this->exact_width) {
$model->errors()->add($attribute, 'uploaded_exact_width', array(':exact_width' => $this->exact_width));
}
if ($this->exact_height and (int) $height !== (int) $this->exact_height) {
$model->errors()->add($attribute, 'uploaded_exact_height', array(':exact_height' => $this->exact_height));
}
if ($this->minimum_width and (int) $width < (int) $this->minimum_width) {
$model->errors()->add($attribute, 'uploaded_minimum_width', array(':minimum_width' => $this->minimum_width));
}
if ($this->minimum_height and (int) $height < (int) $this->minimum_height) {
$model->errors()->add($attribute, 'uploaded_minimum_height', array(':minimum_height' => $this->minimum_height));
}
if ($this->maximum_width and (int) $width > (int) $this->maximum_width) {
$model->errors()->add($attribute, 'uploaded_maximum_width', array(':maximum_width' => $this->maximum_width));
}
if ($this->maximum_height and (int) $height > (int) $this->maximum_height) {
$model->errors()->add($attribute, 'uploaded_maximum_height', array(':maximum_height' => $this->maximum_height));
}
}
}
}
}
开发者ID:Konro1,项目名称:pms,代码行数:49,代码来源:Uploaded.php
示例9: rules
public function rules()
{
return ['out' => function ($value) {
$salary = $this->salary;
$out = $salary['out'] + $salary['balance'];
// должно быть всего выдано
$_balance = $this->getData('balance', 0);
if (!empty($value)) {
if ($value > $out) {
return 'нельзя выдать больше чем должно быть ' . \Num::format($out);
}
}
/*$summa = $value + $_balance;
if($summa != $out){
return 'Сумма Выдано + Осталось выдать НЕ Совпадает ('.\Num::format($out-$_balance).'), должно быть '.\Num::format($out);
}*/
}];
}
开发者ID:Kulkow,项目名称:employee,代码行数:18,代码来源:SalaryEdit.php
示例10: pretty_format
static function pretty_format($price, $valute = NULL, $discount = NULL)
{
if ($valute === 'LVL' or $valute === NULL) {
if ($discount !== NULL) {
return Num::format($price / 100 - $price / 100 * ($discount / 100), 2) . ' ls';
}
return Num::format($price / 100, 2) . ' Ls';
} elseif ($valute === 'EUR') {
if ($discount !== NULL) {
return '€' . Num::format(($price / 100 - $price / 100 * ($discount / 100)) / 0.7, 2);
}
return '€' . Num::format($price / 100 / 0.7, 2);
} elseif ($valute === 'USD') {
if ($discount !== NULL) {
return Num::format(($price / 100 - $price / 100 * ($discount / 100)) / 0.57, 2);
}
return '$ ' . Num::format($price / 100 / 0.57, 2);
}
}
开发者ID:raku,项目名称:My-iShop,代码行数:19,代码来源:currency.php
示例11: topic
/**
* Get prefixed forum title.
*
* @static
* @param Model_Forum_Topic $topic
* @return string
*/
public static function topic(Model_Forum_Topic $topic)
{
$prefix = array();
// Private topic
if ($topic->recipient_count) {
$prefix[] = $topic->recipient_count > 2 ? '<i class="fa fa-group text-muted" title="' . __(':recipients recipients', array(':recipients' => Num::format($topic->recipient_count, 0))) . '"></i>' : '<i class="fa fa-envelope text-muted" title="' . __('Personal message') . '"></i>';
}
// Stickyness
if ($topic->sticky) {
$prefix[] = '<i class="fa fa-thumb-tack text-warning" title="' . __('Pinned') . '"></i>';
}
// Status
switch ($topic->status) {
case Model_Forum_Topic::STATUS_LOCKED:
$prefix[] = '<i class="fa fa-lock text-muted" title="' . __('Locked') . '"></i>';
break;
case Model_Forum_Topic::STATUS_SINK:
$prefix[] = '<i class="fa fa-unlock text-muted" title="' . __('Sink') . '"></i>';
break;
}
return implode(' ', $prefix) . ' ' . HTML::chars($topic->name);
}
开发者ID:anqh,项目名称:anqh,代码行数:29,代码来源:forum.php
示例12: render
/**
* Render view.
*
* @return string
*/
public function render()
{
ob_start();
$rating = $this->count ? $this->total / $this->count : 0;
?>
<span class="rating">
<?php
for ($r = 1; $r <= 5; $r++) {
?>
<i class="<?php
echo $rating >= $r - 0.5 ? 'icon-star' : 'icon-star-empty';
?>
icon-white" title="<?php
echo $r;
?>
"></i>
<?php
}
?>
<?php
if ($this->score) {
?>
<var title="<?php
echo __($this->count == 1 ? ':rates rating' : ':rates ratings', array(':rates' => $this->count));
?>
"><?php
echo Num::format($rating, 2);
?>
</var>
<?php
}
?>
</span>
<?php
return ob_get_clean();
}
开发者ID:anqh,项目名称:core,代码行数:43,代码来源:rating.php
示例13: file
/**
* Загрузка файла и сохранение в папку TMPPATH
*
* try
* {
* $filename = Upload::file($_FILES['file'], NULL, NULL, array('jpg', 'jpeg', 'gif', 'png'));
* $path = TMPPATH . $filename;
* }
* catch (Validation_Exception $e)
* {
* echo debug::vars($e->errors('validation'));
* }
*
* При указании строки в качестве параметра $file, будет произведена
* попытка загрузить файл по URL
*
* @param string|array $file
* @param string $directory Путь к каталогу, куда загружать файл
* @param string $filename Название файла (filename.ext)
* @param array $types Разрешенные типы файлов (При указании пустой строки, разрешены все файлы) array('jpg', '...')
* @param integer $max_size Максимальный размер загружаемого файла
* @return string|NULL Название файла.
* @throws Validation_Exception
*/
public static function file($file, $directory = NULL, $filename = NULL, array $types = array('jpg', 'jpeg', 'gif', 'png'), $max_size = NULL)
{
if (!is_array($file)) {
return Upload::from_url($file, $directory, $filename, $types);
}
if ($directory === NULL) {
$directory = TMPPATH;
}
if ($filename === NULL) {
$filename = uniqid();
} else {
if ($filename === TRUE) {
$filename = $file['name'];
}
}
$ext = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION));
$filename_ext = pathinfo($filename, PATHINFO_EXTENSION);
if (empty($filename_ext)) {
$filename .= '.' . $ext;
}
if ($max_size === NULL) {
$max_size = Num::bytes('20MiB');
}
$validation = Validation::factory(array('file' => $file))->rules('file', array(array('Upload::valid'), array('Upload::size', array(':value', $max_size))));
if (!empty($types)) {
$validation->rule('file', 'Upload::type', array(':value', $types));
}
if (!$validation->check()) {
throw new Validation_Exception($validation);
}
if (!is_dir($directory)) {
mkdir($directory, 0777);
chmod($directory, 0777);
}
Upload::save($file, $filename, $directory, 0777);
return $filename;
}
开发者ID:ZerGabriel,项目名称:cms-1,代码行数:61,代码来源:upload.php
示例14: save_base64_image
/**
* save_base64_image upload images with given path
*
* @param string $image [base64 encoded image]
* @return bool
*/
public function save_base64_image($image)
{
if (!$this->loaded()) {
return FALSE;
}
// Temporary save image
$image_data = base64_decode(preg_replace('#^data:image/\\w+;base64,#i', '', $image));
$image_tmp = tmpfile();
$image_tmp_uri = stream_get_meta_data($image_tmp)['uri'];
file_put_contents($image_tmp_uri, $image_data);
$image = Image::factory($image_tmp_uri);
if (!in_array($image->mime, explode(',', 'image/' . str_replace(",", ",image/", core::config('image.allowed_formats'))))) {
Alert::set(Alert::ALERT, $image->mime . ' ' . sprintf(__('Is not valid format, please use one of this formats "%s"'), core::config('image.allowed_formats')));
return FALSE;
}
if (filesize($image_tmp_uri) > Num::bytes(core::config('image.max_image_size') . 'M')) {
Alert::set(Alert::ALERT, $image->mime . ' ' . sprintf(__('Is not of valid size. Size is limited to %s MB per image'), core::config('image.max_image_size')));
return FALSE;
}
if (core::config('image.disallow_nudes') and $image->is_nude_image()) {
Alert::set(Alert::ALERT, $image->mime . ' ' . __('Seems a nude picture so you cannot upload it'));
return FALSE;
}
return $this->save_image_file($image_tmp_uri, $this->has_images + 1);
}
开发者ID:kleitz,项目名称:openclassifieds2,代码行数:31,代码来源:ad.php
示例15: icon_value
/**
* Print icon with value
*
* @param integer|array $value :var => value
* @param string $singular title for singular value
* @param string $plural title for plural value
* @param string $class icon class
*/
public static function icon_value($value, $singular = '', $plural = '', $class = '')
{
$class = $class ? 'icon ' . $class : 'icon';
if (is_array($value)) {
$var = key($value);
$value = $value[$var];
}
if (is_numeric($value)) {
// Format number
$formatted = Num::format($value, 0);
$plural = $plural ? $plural : $singular;
$title = $singular && $plural ? ' title="' . __($value == 1 ? $singular : $plural, array($var => $formatted)) . '"' : '';
} else {
// Value is a string, no formatting
$formatted = HTML::chars($singular);
$title = '';
}
return '<var class="' . $class . '"' . $title . '>' . $formatted . '</var>';
}
开发者ID:anqh,项目名称:anqh,代码行数:27,代码来源:html.php
示例16: render_stats
/**
* Print some render stats
*
* @return string
*/
public static function render_stats()
{
$run = Profiler::application();
$run = $run['current'];
$queries = Profiler::groups();
$queries = count($queries['database (default)']);
return "Page rendered in " . Num::format($run['time'], 3) . " seconds using " . Num::format($run['memory'] / 1024 / 1024, 2) . "MB and " . $queries . " queries.";
}
开发者ID:AlexKupreev,项目名称:kohanut-core,代码行数:13,代码来源:core.php
示例17: tickets_closed_by_date
/**
* Returns array with Tickets Closed by date formatted to generate charts
* @param timestamp $from_date
* @param timestamp $to_date
* @return array
*/
private function tickets_closed_by_date($from_date, $to_date)
{
// Dates range we are filtering
$dates = $this->dates_range($from_date, $to_date);
$query = DB::select(DB::expr('DATE(read_date) date'))->select(DB::expr('COUNT(id_ticket) total'))->from('tickets')->where('read_date', '!=', 'NULL')->where('status', '=', Model_Ticket::STATUS_CLOSED)->where('read_date', 'between', array(Date::unix2mysql($from_date), Date::unix2mysql($to_date)));
$query = $query->group_by(DB::expr('DATE(read_date)'))->order_by('date', 'asc')->execute();
$result = $query->as_array('date');
$ret = array();
// print maxinum 30 date labels on charts
$label_counter = 0;
$label_breaker = count($dates) > 30 ? Num::round(count($dates) / 30) : 1;
foreach ($dates as $k => $date) {
$count_sum = isset($result[$date['date']]['total']) ? $result[$date['date']]['total'] : 0;
$ret[] = array('date' => $label_counter % $label_breaker == 0 ? $date['date'] : '', '#' => $count_sum);
$label_counter++;
}
return $ret;
}
开发者ID:Ryanker,项目名称:open-eshop,代码行数:24,代码来源:stats.php
示例18: __
<span class="statcard-desc"><?php
echo __('12 Months Ago');
?>
</span>
<h2 class="statcard-number">
<?php
if ($six_months_ago_total !== NULL) {
?>
<?php
echo Num::format($twelve_months_ago_total, 0);
?>
<small class="delta-indicator <?php
echo Num::percent_change($twelve_months_ago_total, $twelve_six_months_ago_total) < 0 ? 'delta-negative' : 'delta-positive';
?>
"><?php
echo Num::percent_change($twelve_months_ago_total, $twelve_six_months_ago_total);
?>
</small>
<?php
} else {
?>
--
<?php
}
?>
</h2>
</div>
</li>
</ul>
</div>
</div>
开发者ID:Chinese1904,项目名称:openclassifieds2,代码行数:31,代码来源:details.php
示例19: foreach
$i = 1;
foreach ($products as $product) {
?>
<tr>
<td><?php
echo $product->title;
?>
</td>
<td><strong class="text-highlighted"><?php
echo $products_data[$product->id_product]['customers'];
?>
</strong></td>
<td>
<strong class="text-highlighted">
<?php
echo $num_format == 'MONEY' ? i18n::format_currency($products_data[$product->id_product]['total']) : Num::format($products_data[$product->id_product]['total'], 0);
?>
</strong>
</td>
<td class="col-xs-2">
<div class="progress">
<div class="progress-bar" style="width: <?php
echo $current_total > 0 ? number_format($products_data[$product->id_product]['total'] / $current_total * 100, 2) : 0;
?>
%;">
</div>
</div>
</td>
</tr>
<?php
}
开发者ID:johnulist,项目名称:open-eshop,代码行数:31,代码来源:details.php
示例20: post_max_size_exceeded
/**
* Determines if a file larger than the post_max_size has been uploaded. PHP
* does not handle this situation gracefully on its own, so this method
* helps to solve that problem.
*
* @return boolean
* @uses Num::bytes
* @uses Arr::get
*/
public static function post_max_size_exceeded()
{
// Make sure the request method is POST
if (Request::$initial->method() !== HTTP_Request::POST) {
return FALSE;
}
// Get the post_max_size in bytes
$max_bytes = Num::bytes(ini_get('post_max_size'));
// Error occurred if method is POST, and content length is too long
return Arr::get($_SERVER, 'CONTENT_LENGTH') > $max_bytes;
}
开发者ID:benshez,项目名称:DreamWeddingCeremomies,代码行数:20,代码来源:Request.php
注:本文中的Num类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论