当前位置: 首页>>代码示例>>PHP>>正文


PHP HTTP_Request::status方法代码示例

本文整理汇总了PHP中HTTP_Request::status方法的典型用法代码示例。如果您正苦于以下问题:PHP HTTP_Request::status方法的具体用法?PHP HTTP_Request::status怎么用?PHP HTTP_Request::status使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HTTP_Request的用法示例。


在下文中一共展示了HTTP_Request::status方法的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');
开发者ID:Nerus87,项目名称:PsychoStats,代码行数:31,代码来源:index.php


注:本文中的HTTP_Request::status方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。