⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 volume.php

📁 Bug tracker, and reporter.
💻 PHP
📖 第 1 页 / 共 3 页
字号:
<?php/** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category   Zend * @package    Zend_Measure * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @version    $Id: Volume.php 8064 2008-02-16 10:58:39Z thomas $ * @license    http://framework.zend.com/license/new-bsd     New BSD License *//** * Implement needed classes */require_once 'Zend/Measure/Exception.php';require_once 'Zend/Measure/Abstract.php';require_once 'Zend/Locale.php';/** * @category   Zend * @package    Zend_Measure * @subpackage Zend_Measure_Flow_Volume * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com) * @license    http://framework.zend.com/license/new-bsd     New BSD License */class Zend_Measure_Flow_Volume extends Zend_Measure_Abstract{    // Flow_Volume definitions    const STANDARD = 'CUBIC_METER_PER_SECOND';    const ACRE_FOOT_PER_DAY           = 'ACRE_FOOT_PER_DAY';    const ACRE_FOOT_PER_HOUR          = 'ACRE_FOOT_PER_HOUR';    const ACRE_FOOT_PER_MINUTE        = 'ACRE_FOOT_PER_MINUTE';    const ACRE_FOOT_PER_SECOND        = 'ACRE_FOOT_PER_SECOND';    const ACRE_FOOT_SURVEY_PER_DAY    = 'ACRE_FOOT_SURVEY_PER_DAY';    const ACRE_FOOT_SURVEY_PER_HOUR   = 'ACRE_FOOT_SURVEY_PER_HOUR';    const ACRE_FOOT_SURVEY_PER_MINUTE = 'ACRE_FOOT_SURVEY_PER_MINUTE';    const ACRE_FOOT_SURVEY_PER_SECOND = 'ACRE_FOOT_SURVEY_PER_SECOND';    const ACRE_INCH_PER_DAY           = 'ACRE_INCH_PER_DAY';    const ACRE_INCH_PER_HOUR          = 'ACRE_INCH_PER_HOUR';    const ACRE_INCH_PER_MINUTE        = 'ACRE_INCH_PER_MINUTE';    const ACRE_INCH_PER_SECOND        = 'ACRE_INCH_PER_SECOND';    const ACRE_INCH_SURVEY_PER_DAY    = 'ACRE_INCH_SURVEY_PER_DAY';    const ACRE_INCH_SURVEY_PER_HOUR   = 'ACRE_INCH_SURVEY_PER_HOUR';    const ACRE_INCH_SURVEY_PER_MINUTE = 'ACRE_INCH_SURVEY_PER_MINUTE';    const ACRE_INCH_SURVEY_PER_SECOND = 'ACRE_INCH_SURVEY_PER_SECOND';    const BARREL_PETROLEUM_PER_DAY    = 'BARREL_PETROLEUM_PER_DAY';    const BARREL_PETROLEUM_PER_HOUR   = 'BARREL_PETROLEUM_PER_HOUR';    const BARREL_PETROLEUM_PER_MINUTE = 'BARREL_PETROLEUM_PER_MINUTE';    const BARREL_PETROLEUM_PER_SECOND = 'BARREL_PETROLEUM_PER_SECOND';    const BARREL_PER_DAY              = 'BARREL_PER_DAY';    const BARREL_PER_HOUR             = 'BARREL_PER_HOUR';    const BARREL_PER_MINUTE           = 'BARREL_PER_MINUTE';    const BARREL_PER_SECOND           = 'BARREL_PER_SECOND';    const BARREL_US_PER_DAY           = 'BARREL_US_PER_DAY';    const BARREL_US_PER_HOUR          = 'BARREL_US_PER_HOUR';    const BARREL_US_PER_MINUTE        = 'BARREL_US_PER_MINUTE';    const BARREL_US_PER_SECOND        = 'BARREL_US_PER_SECOND';    const BARREL_WINE_PER_DAY         = 'BARREL_WINE_PER_DAY';    const BARREL_WINE_PER_HOUR        = 'BARREL_WINE_PER_HOUR';    const BARREL_WINE_PER_MINUTE      = 'BARREL_WINE_PER_MINUTE';    const BARREL_WINE_PER_SECOND      = 'BARREL_WINE_PER_SECOND';    const BARREL_BEER_PER_DAY         = 'BARREL_BEER_PER_DAY';    const BARREL_BEER_PER_HOUR        = 'BARREL_BEER_PER_HOUR';    const BARREL_BEER_PER_MINUTE      = 'BARREL_BEER_PER_MINUTE';    const BARREL_BEER_PER_SECOND      = 'BARREL_BEER_PER_SECOND';    const BILLION_CUBIC_FOOT_PER_DAY  = 'BILLION_CUBIC_FOOT_PER_DAY';    const BILLION_CUBIC_FOOT_PER_HOUR = 'BILLION_CUBIC_FOOT_PER_HOUR';    const BILLION_CUBIC_FOOT_PER_MINUTE = 'BILLION_CUBIC_FOOT_PER_MINUTE';    const BILLION_CUBIC_FOOT_PER_SECOND = 'BILLION_CUBIC_FOOT_PER_SECOND';    const CENTILITER_PER_DAY          = 'CENTILITER_PER_DAY';    const CENTILITER_PER_HOUR         = 'CENTILITER_PER_HOUR';    const CENTILITER_PER_MINUTE       = 'CENTILITER_PER_MINUTE';    const CENTILITER_PER_SECOND       = 'CENTILITER_PER_SECOND';    const CUBEM_PER_DAY               = 'CUBEM_PER_DAY';    const CUBEM_PER_HOUR              = 'CUBEM_PER_HOUR';    const CUBEM_PER_MINUTE            = 'CUBEM_PER_MINUTE';    const CUBEM_PER_SECOND            = 'CUBEM_PER_SECOND';    const CUBIC_CENTIMETER_PER_DAY    = 'CUBIC_CENTIMETER_PER_DAY';    const CUBIC_CENTIMETER_PER_HOUR   = 'CUBIC_CENTIMETER_PER_HOUR';    const CUBIC_CENTIMETER_PER_MINUTE = 'CUBIC_CENTIMETER_PER_MINUTE';    const CUBIC_CENTIMETER_PER_SECOND = 'CUBIC_CENTIMETER_PER_SECOND';    const CUBIC_DECIMETER_PER_DAY     = 'CUBIC_DECIMETER_PER_DAY';    const CUBIC_DECIMETER_PER_HOUR    = 'CUBIC_DECIMETER_PER_HOUR';    const CUBIC_DECIMETER_PER_MINUTE  = 'CUBIC_DECIMETER_PER_MINUTE';    const CUBIC_DECIMETER_PER_SECOND  = 'CUBIC_DECIMETER_PER_SECOND';    const CUBIC_DEKAMETER_PER_DAY     = 'CUBIC_DEKAMETER_PER_DAY';    const CUBIC_DEKAMETER_PER_HOUR    = 'CUBIC_DEKAMETER_PER_HOUR';    const CUBIC_DEKAMETER_PER_MINUTE  = 'CUBIC_DEKAMETER_PER_MINUTE';    const CUBIC_DEKAMETER_PER_SECOND  = 'CUBIC_DEKAMETER_PER_SECOND';    const CUBIC_FOOT_PER_DAY          = 'CUBIC_FOOT_PER_DAY';    const CUBIC_FOOT_PER_HOUR         = 'CUBIC_FOOT_PER_HOUR';    const CUBIC_FOOT_PER_MINUTE       = 'CUBIC_FOOT_PER_MINUTE';    const CUBIC_FOOT_PER_SECOND       = 'CUBIC_FOOT_PER_SECOND';    const CUBIC_INCH_PER_DAY          = 'CUBIC_INCH_PER_DAY';    const CUBIC_INCH_PER_HOUR         = 'CUBIC_INCH_PER_HOUR';    const CUBIC_INCH_PER_MINUTE       = 'CUBIC_INCH_PER_MINUTE';    const CUBIC_INCH_PER_SECOND       = 'CUBIC_INCH_PER_SECOND';    const CUBIC_KILOMETER_PER_DAY     = 'CUBIC_KILOMETER_PER_DAY';    const CUBIC_KILOMETER_PER_HOUR    = 'CUBIC_KILOMETER_PER_HOUR';    const CUBIC_KILOMETER_PER_MINUTE  = 'CUBIC_KILOMETER_PER_MINUTE';    const CUBIC_KILOMETER_PER_SECOND  = 'CUBIC_KILOMETER_PER_SECOND';    const CUBIC_METER_PER_DAY         = 'CUBIC_METER_PER_DAY';    const CUBIC_METER_PER_HOUR        = 'CUBIC_METER_PER_HOUR';    const CUBIC_METER_PER_MINUTE      = 'CUBIC_METER_PER_MINUTE';    const CUBIC_METER_PER_SECOND      = 'CUBIC_METER_PER_SECOND';    const CUBIC_MILE_PER_DAY          = 'CUBIC_MILE_PER_DAY';    const CUBIC_MILE_PER_HOUR         = 'CUBIC_MILE_PER_HOUR';    const CUBIC_MILE_PER_MINUTE       = 'CUBIC_MILE_PER_MINUTE';    const CUBIC_MILE_PER_SECOND       = 'CUBIC_MILE_PER_SECOND';    const CUBIC_MILLIMETER_PER_DAY    = 'CUBIC_MILLIMETER_PER_DAY';    const CUBIC_MILLIMETER_PER_HOUR   = 'CUBIC_MILLIMETER_PER_HOUR';    const CUBIC_MILLIMETER_PER_MINUTE = 'CUBIC_MILLIMETER_PER_MINUTE';    const CUBIC_MILLIMETER_PER_SECOND = 'CUBIC_MILLIMETER_PER_SECOND';    const CUBIC_YARD_PER_DAY          = 'CUBIC_YARD_PER_DAY';    const CUBIC_YARD_PER_HOUR         = 'CUBIC_YARD_PER_HOUR';    const CUBIC_YARD_PER_MINUTE       = 'CUBIC_YARD_PER_MINUTE';    const CUBIC_YARD_PER_SECOND       = 'CUBIC_YARD_PER_SECOND';    const CUSEC                       = 'CUSEC';    const DECILITER_PER_DAY           = 'DECILITER_PER_DAY';    const DECILITER_PER_HOUR          = 'DECILITER_PER_HOUR';    const DECILITER_PER_MINUTE        = 'DECILITER_PER_MINUTE';

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -