在
PHP中有更好/更短的方式
原文链接:https://www.f2er.com/php/131983.html$x = $x + 10;
即
就像是
$x .= 10; // (but this doesn't add together)
我相信我已经看到比$x = $x 10更短的方式;
$x = $x + 10;
即
就像是
$x .= 10; // (but this doesn't add together)
我相信我已经看到比$x = $x 10更短的方式;