ホームページ >バックエンド開発 >PHPチュートリアル >ダウンロードしたWebサイトの実行終了時にエラーが発生する

ダウンロードしたWebサイトの実行終了時にエラーが発生する

WBOY
WBOYオリジナル
2016-06-23 14:11:521224ブラウズ

从网上下了一个网站的模板,在本机运行了下,出现这个错误:
SCREAM: Error suppression ignored for 
( ! ) Fatal error: Call to undefined function get_header() in C:\wamp\www\zenith\index.php on line 17 
Call Stack 
# Time Memory Function Location 
1 0.0004 386824 {main}( ) ..\index.php:0 


index。php的第17行是:
get_header(); // Loads the header.php template. ?>

这是为什么?


回复讨论(解决方案)

get_headers() 

还是报错:
( ! ) Parse error: syntax error, unexpected '<' in C:\wamp\www\zenith\index.php on line 17

但是前面的代码没问题啊:
/**
* Index Template
*
* This is the default template. It is used when a more specific template can't be found to display
* posts. It is unlikely that this template will ever be used, but there may be rare cases.
*
* @package Zenith
* @subpackage Template
* @since 0.1.0
* @author Tung Do
 * @copyright Copyright (c) 2013, Tung Do
 * @link http://devpress.com/themes/zenith/
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 */

将17 行附件的代码贴出来

/**
* Index Template
*
* This is the default template. It is used when a more specific template can't be found to display
* posts. It is unlikely that this template will ever be used, but there may be rare cases.
*
* @package Zenith
* @subpackage Template
* @since 0.1.0
* @author Tung Do
 * @copyright Copyright (c) 2013, Tung Do
 * @link http://devpress.com/themes/zenith/
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 */

get_headers(); // Loads the header.php template. ?>
















' . __( '[entry-edit-link] [entry-published] [entry-author] [entry-comments-link]', 'zenith' ) . '
' ); ?>





→', 'zenith' ) ); ?>
'




' . __( '[entry-terms taxonomy="category" separator=""] [entry-terms taxonomy ="post_tag" separator=""]', 'zenith' ) . '
' ); ?>

























第 17 行は getheaders

get_headers(); // header.php テンプレートを読み込みます。 ?> 
このようなものは、次のページに注釈を入れますか?> も注釈を付けられますか、それとも?> 下の一行に放たれます。スクリーム:

(!) のエラー抑制が無視されました。致命的なエラー: C:wampwwwzenithindex.php の 11 行目で未定義の関数 do_atomic() を呼び出します。

现在还是这个报错、

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:PHP はクライアントの MAC アドレスを取得できますか?次の記事:PHP はクライアントの MAC アドレスを取得できますか?

関連記事

続きを見る