Skip to content

Instantly share code, notes, and snippets.

@rtheunissen
Created February 19, 2019 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtheunissen/854f90bd228c57aee82e391559e95534 to your computer and use it in GitHub Desktop.
Save rtheunissen/854f90bd228c57aee82e391559e95534 to your computer and use it in GitHub Desktop.
Summary of refcount shortcuts for ext-decimal
<?php
$a = "1";
$b = "2";
/**
* This should reuse the decimal created for A as the result.
*/
$c = \Decimal\Decimal::valueOf($a)->add($b);
debug_zval_dump($c);
// object(Decimal\Decimal)#1 (2) refcount(2){
// ["value"]=>
// string(1) "3" refcount(1)
// ["precision"]=>
// int(34)
// }
/**
* This should reuse $c as the result.
*/
$c += "3";
debug_zval_dump($c);
// object(Decimal\Decimal)#1 (2) refcount(2){
// ["value"]=>
// string(1) "6" refcount(1)
// ["precision"]=>
// int(34)
// }
/**
* This should NOT reuse $c because we evaluate the RHS before we assign.
* The increment is rewritten as `$c = $c + 1`.
*/
$c++;
debug_zval_dump($c);
// object(Decimal\Decimal)#2 (2) refcount(2){
// ["value"]=>
// string(1) "7" refcount(1)
// ["precision"]=>
// int(34)
// }
/**
* This should NOT reuse $c because we evaluate the RHS before we assign.
* The refcount of $c is 2 during the operation.
*/
$c = $c->add($c);
debug_zval_dump($c);
// object(Decimal\Decimal)#1 (2) refcount(2){
// ["value"]=>
// string(2) "14" refcount(1)
// ["precision"]=>
// int(34)
// }
/**
* This should reuse $value as if it wasn't a reference.
*/
function addto(\Decimal\Decimal &$value, int $n) {
$value += $n;
}
addto($c, 9);
debug_zval_dump($c);
// object(Decimal\Decimal)#1 (2) refcount(2){
// ["value"]=>
// string(2) "23" refcount(1)
// ["precision"]=>
// int(34)
/**
* This should NOT reuse $c because we evaluate the RHS before we assign.
* The increment is rewritten as `$value = $value + 1`.
*/
function incr(\Decimal\Decimal &$value) {
$value++;
}
incr($c);
debug_zval_dump($c);
// object(Decimal\Decimal)#2 (2) refcount(2){
// ["value"]=>
// string(2) "24" refcount(1)
// ["precision"]=>
// int(34)
// }
/**
* This should NOT reuse anything because we evaluate the RHS before we assign.
*/
function mulby(\Decimal\Decimal &$value, int $n) {
$value = $value->mul($n);
}
mulby($c, 2);
debug_zval_dump($c);
// object(Decimal\Decimal)#1 (2) refcount(2){
// ["value"]=>
// string(2) "48" refcount(1)
// ["precision"]=>
// int(34)
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment