怎么用php设置界面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用php设置界面相关的知识,希望对你有一定的参考价值。
如题,我想让php脚本与html代码分离,但又想要好看的界面,请问怎么做?(不要教程)
php脚本分离和好看的界面没啥关系吧?界面好看主要是美工,css,js的问题
分离目前流行的大概就是两个模板,具体模板用法请查看手册。简单例子:
1:smarty模板(去下载个smarty的包,里边有demo)
<?php
require \'../libs/Smarty.class.php\';
$smarty = new Smarty;
$smarty->compile_check = true;
$smarty->debugging = true;
$smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill");
$smarty->assign("FirstName",array("John","Mary","James","Henry"));
$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
$smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
array("I", "J", "K", "L"), array("M", "N", "O", "P")));
$smarty->assign("contacts", array(array("phone" => "1", "fax" => "2", "cell" => "3"),
array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")));
$smarty->assign("option_values", array("NY","NE","KS","IA","OK","TX"));
$smarty->assign("option_output", array("New York","Nebraska","Kansas","Iowa","Oklahoma","Texas"));
$smarty->assign("option_selected", "NE");
$smarty->display(\'index.tpl\');
?>
2:template对象
用法:下载template对象模板
test.php
<?php
require_once("../inc/template.inc.php");
$tmplt = new Template();
$tmplt -> set_file("hd", test.htm");
$url_block=\'test\';
$tmplt -> set_var(\'url_block\',$url_block);
$tmplt -> parse("ot","hd");
$tmplt -> p("ot");
?>
test.htm
<html>
<div >url_block</div>
</html> 参考技术A 使用模板或者使用框架,建议先学习模板在学习框架。关于模板建议使用smarty。 你可以百度搜索php新手入门,里面有讲解smarty的使用和smarty手册下载。。 参考技术B 用Smarty,程序在PHP里,页面用HTML,你想要怎么写都可以 参考技术C 用smarty!
android studio怎么恢复界面默认设置
参考技术A 解决方案:1.删除c盘下的配置文件 路径为C:\Users\用户名\.AndroidStudio1.2(名字视版本号定) ,
2.重新打开android studio 按照下图方式选择,选择后手动配置设置
3.选择custom,然后下一步
4.后面手动选择sdk位置,然后点下一步,会检测更新,检测完了点击finish整个android studio就重新配置好了,要修改设置的话进入程序后找到configure自行修改本回答被提问者采纳
以上是关于怎么用php设置界面的主要内容,如果未能解决你的问题,请参考以下文章