Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 425 Bytes

HowTo.md

File metadata and controls

35 lines (25 loc) · 425 Bytes

How To

Do Math

<?php
$int = new \SplInt(10);
$value = &$int();
$value++;

echo 'SplInt value is ' . $int();

The above example will output:

SplInt value is : 11

Concatenate

<?php
$string = new \SplString('hello ');
$value = &$string();
$value .= 'world';

echo 'SplString value is ' . $string();

The above example will output:

SplString value is : hello world