You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
393 B

  1. <?php
  2. header("Access-Control-Allow-Origin:*");
  3. //载入配置文件和连接数据库
  4. require_once 'Common/Mysql.php';
  5. require_once 'dictionary.php';
  6. require_once 'Common/sinaAPI.php';
  7. $pdo=conn();
  8. $type = $_POST['type'];
  9. $type = explode("_",$type);
  10. //根据需求调用相应的文件获得数据
  11. require_once 'Model/'.$type[0].'/'.$type[1].'.php';
  12. ?>