最佳答案
在intval和(int)之间有什么特殊的区别吗?
例子:
$product_id = intval($_GET['pid']);
$product_id = (int) $_GET['pid'];
以上两行代码之间有什么特别的区别吗?