字符串可增量

字符串可以进行加减运算

Example:

$a = 'a';
echo ++$a;    // output: b

$b = 'ab';
echo ++$a;  // output: ac

可运用到excel中

你可能感兴趣的:(字符串可增量)