Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

12 rader
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. ?>