<?php
class TestAction extends Action {
public function index() {
$str = file_get_contents('http://www.gushiwen.org/gushi/tangshi.aspx');
preg_match("/<title>(.*)</title>/i", $str, $arr);
echo $arr[1];
}
} 最佳答案