美文网首页
获取学信网信息

获取学信网信息

作者: 苍老师的眼泪 | 来源:发表于2020-12-15 08:51 被阅读0次
<?php

  $page = file_get_contents('https://www.chsi.com.cn/xlcx/bg.do?vcode=ADG5NY4KA5BGEDF2');

  file_put_contents('result.html', $content);

  preg_match_all('/\<span style="width:296px;"\>(.+)\<\/span\>/', $page, $university);
  preg_match_all('/\<td\>\<span\>(.+)\<\/span\>\<\/td\>/', $page, $info);
  
  if (isset($university[1][0]) && isset($info[1][3]))
    return ['university' => $university[1][0], 'education' => $info[1][3]];
  
  return false;

相关文章

网友评论

      本文标题:获取学信网信息

      本文链接:https://www.haomeiwen.com/subject/rdpigktx.html