• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • assert_options()

    (PHP 4, PHP 5, PHP 7)

    设置/获取断言的各种标志

    说明

    assert_options(int $what[,mixed $value]): mixed

    设置assert()的各种控制选项,或者是仅仅查询当前的设置。

    参数

    $what
    断言标志
    标志INI 设置默认值描述
    ASSERT_ACTIVEassert.active1启用assert()断言
    ASSERT_WARNINGassert.warning1为每个失败的断言产生一个 PHP 警告(warning)
    ASSERT_BAILassert.bail0在断言失败时中止执行
    ASSERT_QUIET_EVALassert.quiet_eval0在断言表达式求值时禁用error_reporting
    ASSERT_CALLBACKassert.callback(NULL)断言失败时调用回调函数
    $value

    标志的新值。

    返回值

    返回任意标志的原始设置,出错时返回FALSE

    范例

    Example #1assert_options()例子

    <?php
    // 处理断言失败时的函数
    function assert_failure()
    {
        echo 'Assert failed';
    }
    // 我们的测试函数
    function test_assert($parameter)
    {
        assert(is_bool($parameter));
    }
    // 设置断言标志
    assert_options(ASSERT_ACTIVE,   true);
    assert_options(ASSERT_BAIL,     true);
    assert_options(ASSERT_WARNING,  false);
    assert_options(ASSERT_CALLBACK, 'assert_failure');
    // 让一个断言会失败
    test_assert(1);
    // 由于 ASSERT_BAIL 是 true,这里永远也到不了
    echo 'Never reached';
    ?>
    

    参见

    • assert() 检查一个断言是否为 FALSE
    Here is an exemple how to use the assertion callback function :
    <?php
     assert_options( ASSERT_CALLBACK, 'assert_callback');
     function assert_callback( $script, $line, $message ) {
      echo 'You have a design error in your script <b>', $script,'</b> : line <b>', $line,'</b> :<br />';
      echo '<b>', ereg_replace( '^.*//\*', '', $message ), '</b><br /><br />';
      echo 'Open the source file and check it, because it\'s not a normal behaviour !';
      exit;
     }
     $x = 3;
     assert('is_integer( $x ) && ($x >= 0) && ($x <= 10); //* $x must be an integer value from 0 to 10' );
     echo "0 <= $x <= 10";
    ?>
    assertion is usefull for "design by contract" methodology ...

    下篇:assert()