> For the complete documentation index, see [llms.txt](https://php7.shujuwajue.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://php7.shujuwajue.com/php-70x-xin-te-xing/qi-ta-te-xing-he-bian-geng/zheng-shu-chu-fa-han-shu-intdiv.md).

# 整数除法函数 intdiv()

新加的函数[intdiv()](http://php.net/manual/zh/function.intdiv.php)用来进行 整数的除法运算。

```php
var_dump(intdiv(10, 3));
```

输出结果：

```
int(3)
```
