示例#1
0
文件: Http.php 项目: tokushima/ebi
<?php

/**
 * @author tokushima
 * 
 * GETリクエスト
 */
$b = new \ebi\Browser();
$b->do_get(url('index::template_abc'));
$explode_head = $b->explode_head();
eq(true, !empty($explode_head));
eq(true, is_array($explode_head));
$head = $b->head();
eq(true, !empty($head));
eq(true, is_string($head));