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

📄 mole.php

📁 Bug tracker, and reporter.
💻 PHP
字号:
<?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: Mole.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_Mole * @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_Mole extends Zend_Measure_Abstract{    // Mole definitions    const STANDARD = 'MOLE_PER_SECOND';    const CENTIMOLE_PER_DAY    = 'CENTIMOLE_PER_DAY';    const CENTIMOLE_PER_HOUR   = 'CENTIMOLE_PER_HOUR';    const CENTIMOLE_PER_MINUTE = 'CENTIMOLE_PER_MINUTE';    const CENTIMOLE_PER_SECOND = 'CENTIMOLE_PER_SECOND';    const MEGAMOLE_PER_DAY     = 'MEGAMOLE_PER_DAY';    const MEGAMOLE_PER_HOUR    = 'MEGAMOLE_PER_HOUR';    const MEGAMOLE_PER_MINUTE  = 'MEGAMOLE_PER_MINUTE';    const MEGAMOLE_PER_SECOND  = 'MEGAMOLE_PER_SECOND';    const MICROMOLE_PER_DAY    = 'MICROMOLE_PER_DAY';    const MICROMOLE_PER_HOUR   = 'MICROMOLE_PER_HOUR';    const MICROMOLE_PER_MINUTE = 'MICROMOLE_PER_MINUTE';    const MICROMOLE_PER_SECOND = 'MICROMOLE_PER_SECOND';    const MILLIMOLE_PER_DAY    = 'MILLIMOLE_PER_DAY';    const MILLIMOLE_PER_HOUR   = 'MILLIMOLE_PER_HOUR';    const MILLIMOLE_PER_MINUTE = 'MILLIMOLE_PER_MINUTE';    const MILLIMOLE_PER_SECOND = 'MILLIMOLE_PER_SECOND';    const MOLE_PER_DAY         = 'MOLE_PER_DAY';    const MOLE_PER_HOUR        = 'MOLE_PER_HOUR';    const MOLE_PER_MINUTE      = 'MOLE_PER_MINUTE';    const MOLE_PER_SECOND      = 'MOLE_PER_SECOND';    protected $_UNITS = array(        'CENTIMOLE_PER_DAY'    => array(array('' => '0.01', '/' => '86400'),     'cmol/day'),        'CENTIMOLE_PER_HOUR'   => array(array('' => '0.01', '/' => '3600'),      'cmol/h'),        'CENTIMOLE_PER_MINUTE' => array(array('' => '0.01', '/' => '60'),        'cmol/m'),        'CENTIMOLE_PER_SECOND' => array('0.01',     'cmol/s'),        'MEGAMOLE_PER_DAY'     => array(array('' => '1000000', '/' => '86400'),  'Mmol/day'),        'MEGAMOLE_PER_HOUR'    => array(array('' => '1000000', '/' => '3600'),   'Mmol/h'),        'MEGAMOLE_PER_MINUTE'  => array(array('' => '1000000', '/' => '60'),     'Mmol/m'),        'MEGAMOLE_PER_SECOND'  => array('1000000',  'Mmol/s'),        'MICROMOLE_PER_DAY'    => array(array('' => '0.000001', '/' => '86400'), '碌mol/day'),        'MICROMOLE_PER_HOUR'   => array(array('' => '0.000001', '/' => '3600'),  '碌mol/h'),        'MICROMOLE_PER_MINUTE' => array(array('' => '0.000001', '/' => '60'),    '碌mol/m'),        'MICROMOLE_PER_SECOND' => array('0.000001', '碌mol/s'),        'MILLIMOLE_PER_DAY'    => array(array('' => '0.001', '/' => '86400'),    'mmol/day'),        'MILLIMOLE_PER_HOUR'   => array(array('' => '0.001', '/' => '3600'),     'mmol/h'),        'MILLIMOLE_PER_MINUTE' => array(array('' => '0.001', '/' => '60'),       'mmol/m'),        'MILLIMOLE_PER_SECOND' => array('0.001',    'mmol/s'),        'MOLE_PER_DAY'         => array(array('' => '1', '/' => '86400'),        'mol/day'),        'MOLE_PER_HOUR'        => array(array('' => '1', '/' => '3600'),         'mol/h'),        'MOLE_PER_MINUTE'      => array(array('' => '1', '/' => '60'),           'mol/m'),        'MOLE_PER_SECOND'      => array('1',        'mol/s'),        'STANDARD'             => 'MOLE_PER_SECOND'    );}

⌨️ 快捷键说明

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