From 6fe89e3c14ec53db7c21b3717d1e9a98c0db855d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 4 Dec 2012 09:10:46 +0100 Subject: PHP 5.5: save extension reflection --- reflection/bcmath.txt | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 reflection/bcmath.txt (limited to 'reflection/bcmath.txt') diff --git a/reflection/bcmath.txt b/reflection/bcmath.txt new file mode 100644 index 0000000..aa20c41 --- /dev/null +++ b/reflection/bcmath.txt @@ -0,0 +1,89 @@ +Extension [ extension #31 bcmath version ] { + + - INI { + Entry [ bcmath.scale ] + Current = '0' + } + } + + - Functions { + Function [ function bcadd ] { + + - Parameters [3] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + Parameter #2 [ $scale ] + } + } + Function [ function bcsub ] { + + - Parameters [3] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + Parameter #2 [ $scale ] + } + } + Function [ function bcmul ] { + + - Parameters [3] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + Parameter #2 [ $scale ] + } + } + Function [ function bcdiv ] { + + - Parameters [3] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + Parameter #2 [ $scale ] + } + } + Function [ function bcmod ] { + + - Parameters [2] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + } + } + Function [ function bcpow ] { + + - Parameters [3] { + Parameter #0 [ $x ] + Parameter #1 [ $y ] + Parameter #2 [ $scale ] + } + } + Function [ function bcsqrt ] { + + - Parameters [2] { + Parameter #0 [ $operand ] + Parameter #1 [ $scale ] + } + } + Function [ function bcscale ] { + + - Parameters [1] { + Parameter #0 [ $scale ] + } + } + Function [ function bccomp ] { + + - Parameters [3] { + Parameter #0 [ $left_operand ] + Parameter #1 [ $right_operand ] + Parameter #2 [ $scale ] + } + } + Function [ function bcpowmod ] { + + - Parameters [4] { + Parameter #0 [ $x ] + Parameter #1 [ $y ] + Parameter #2 [ $mod ] + Parameter #3 [ $scale ] + } + } + } +} + -- cgit