代码如下:$current = file_get_contents("http://xxxxx/xxxxx/get_people_count.php");get_people_count.php代码如下:<?php
  error_reporting(E_ALL^E_NOTICE);
  date_default_timezone_set("PRC");
  require_once("FlowfairyDB.php");
  $flowcon=new FlowfairyDB();
  echo $flowcon->GetCount();
?>$flowcon->GetCount()的返回值是int类型的,可是读取过来就变成string类型的了。我需要不断地读取$flowcon->GetCount()的返回值并把它们按照int类型存入数据表以方便比较大小,该怎样做?