本文整理汇总了PHP中SC_Utils::sfErrorHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP SC_Utils::sfErrorHeader方法的具体用法?PHP SC_Utils::sfErrorHeader怎么用?PHP SC_Utils::sfErrorHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SC_Utils
的用法示例。
在下文中一共展示了SC_Utils::sfErrorHeader方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
public function testSfErrorHeader_printフラグがOFFの場合_指定したメッセージがグローバル変数に格納される()
{
global $GLOBAL_ERR;
$this->expectOutputString('');
$old_err = $GLOBAL_ERR;
SC_Utils::sfErrorHeader('ERROR MESSAGE');
$this->expected = $old_err . '<div id="errorHeader">ERROR MESSAGE</div>';
$this->actual = $GLOBAL_ERR;
$this->verify();
}
示例2: sfInitInstall
function sfInitInstall()
{
// インストール済みが定義されていない。
if (!defined('ECCUBE_INSTALL')) {
if (!ereg("/install/", $_SERVER['PHP_SELF'])) {
header("Location: ./install/");
// TODO 絶対URL にする
}
} else {
$path = HTML_PATH . "install/index.php";
if (file_exists($path)) {
SC_Utils::sfErrorHeader(">> /install/index.phpは、インストール完了後にファイルを削除してください。");
}
}
}