1加100的php代码三种写法1. 使用加法运算符:
```php $num = 1; $num += 100; echo $num; // 101 ```
2. 使用PHP内置函数:
```php $num = 1; $num = $num + 100; echo $num; // 101 ```
3. 使用PHP内置函数:
```php $num = 1; $num = add($num, 100); echo $num; // 101 ```