我们如何接受在每页<h2> </h2>
之间编写的PHP或jQuery来放置我的页面标题,以便每个页面都不同。
示例:
<section class="sub_header">
<h2>Contact</h2>
<h5>Contactez-nous !</h5>
</section>
=> <title>Contact</title>
有可能吗?
PHP,jQuery load()函数......?
感谢
我的解决方案: 我回答是因为它可以用于一些。
我会在重要页面上添加这些小代码。使用超全球'REQUEST_URI':
<?php
if ($_SERVER['REQUEST_URI'] == '/index_contact.html') {
$data = 'Contact';
}elseif(
$_SERVER['REQUEST_URI'] == '/index_blog.html') {
$data = 'The blog';
}else{
$data = 'Default title.';
}
// Display the name of the page if data exists
if (isset($data)) {echo $data;} ?>
希望它对某些人有用。
答案 0 :(得分:0)
您可以尝试使用prag_match在h1标记之间提取数据。
$data ="Your content goes here";
preg_match('/<h2>(.*?)<\/h2>/s', $data, $matches);
echo $matches[1];
exit;