本文整理匯總了PHP中Head::insert方法的典型用法代碼示例。如果您正苦於以下問題:PHP Head::insert方法的具體用法?PHP Head::insert怎麽用?PHP Head::insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Head
的用法示例。
在下文中一共展示了Head::insert方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: fopen
$fichier = fopen('ctr/ctr.' . $generation . '.php', 'a');
fclose($fichier);
$fichier = fopen('lib/css/' . $generation . '.css', 'a');
fclose($fichier);
$fichier = fopen('lib/php/config/config.' . $generation . '.php', 'w');
// DONNEES TEMPLATES HTML
$insert = '<?php
$title = \'' . $titreGeneration . '\';
$description = \'description ' . $generation . '\';
$design = \'' . $generation . '\';
$script = \'1\';
$jquery = 0;';
fwrite($fichier, $insert);
fclose($fichier);
// AJOUTE UNE LIGNE DANS LE HTACCESS POUR LE REWRITE D'URL //
$fichier = fopen('.htaccess', 'a');
$insert = '
RewriteRule ^' . $titreGeneration . '$ index.php?action=' . $generation . ' [L]';
fwrite($fichier, $insert);
fclose($fichier);
}
Head::insert('1', '1', '1');
?>
<form method="post">
<input type="text" name="generation">
<input type="submit" value="Generer les pages">
</form>
<?php
Foot::insert('1', '1');
示例2: session_start
include 'lib/php/autoload/autoload.php';
session_start();
if (!isset($_SESSION['panier'])) {
$_SESSION['panier'] = new Cart();
}
//session_destroy();
//var_dump($_SESSION['panier']);
if (isset($_GET['action'])) {
$action = htmlspecialchars($_GET['action']);
} else {
header('Location:Home');
die;
}
if (file_exists('lib/php/config/config.' . $action . '.php')) {
include 'lib/php/config/config.' . $action . '.php';
}
$bdd = Bdd::connect();
if (file_exists('ctr/ctr.' . $action . '.php')) {
include 'ctr/ctr.' . $action . '.php';
}
if (file_exists('mod/mod.' . $action . '.php')) {
include 'mod/mod.' . $action . '.php';
}
Head::insert($design, $description, $title);
if (file_exists('vue/vue.' . $action . '.php')) {
include 'vue/vue.' . $action . '.php';
} else {
echo 'vue introuvable';
}
Foot::insert($script, $jquery);