本文整理汇总了PHP中HTTP_Request::header方法的典型用法代码示例。如果您正苦于以下问题:PHP HTTP_Request::header方法的具体用法?PHP HTTP_Request::header怎么用?PHP HTTP_Request::header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTTP_Request
的用法示例。
在下文中一共展示了HTTP_Request::header方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: trim
*
* PsychoStats is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PsychoStats. If not, see <http://www.gnu.org/licenses/>.
*
* Version: $Id: index.php 442 2008-05-13 10:30:11Z lifo $
*/
define("PSYCHOSTATS_PAGE", true);
define("PSYCHOSTATS_INSTALL_PAGE", true);
require_once "./common.php";
$opts = init_session_opts(true);
$newer_avail = false;
$h = new HTTP_Request('http://updates.psychostats.com/releases/' . PS_INSTALL_VERSION);
$res = $h->download();
if ($h->status() == '200' and $res) {
$newer_avail = $res[0] ? trim($res[0]) : 0;
$release_date = $h->header('x-psychostats-date');
$ps_version = $h->header('x-psychostats-ver');
}
$newest_url = 'http://www.psychostats.com/downloads/psychostats/';
$validfields = array('s', 're');
$cms->theme->assign_request_vars($validfields, true);
$cms->theme->assign(array('install' => $opts['install'], 'newer_avail' => $newer_avail, 'release_date' => $release_date, 'ps_version' => $ps_version, 'local_ps_version' => PS_INSTALL_VERSION, 'newest_url' => $newest_url));
// display the output
$basename = basename(__FILE__, '.php');
$cms->theme->add_css('css/2column.css');
$cms->full_page($basename, $basename, $basename . '_header', $basename . '_footer');