Is it possible to include an html file inside a php file(是否可以在 php 文件中包含 html 文件)
问题描述
我需要在 php 文件中包含一个 html 文件,我尝试在 php 文件中使用 include
和 require
,但没有应用 css 样式,只有内容是包括.有没有办法包含带有样式和 jquery 的完整 html 文件?
I need to include a html file inside a php file, I tried using include
and require
in php file, but css styles are not applied and only the content is included. Is there a way to include the full html file with styles and jquery?
推荐答案
没有 PHP 脚本之类的东西.只是碰巧包含 PHP 代码块的文件.你可以 include()
任何你想要的东西,但除非包含的文件在某处有一个 <?php ... ?>
块,否则文件的内容将简单被视为输出.
There's no such thing as a PHP script. There's just files that happen to contain PHP code blocks. You can include()
anything you want, but unless that included file has a <?php ... ?>
block in it somewhere, the file's contents will simply be treated as output.
如果没有应用 css,请确保您的样式表正在实际加载,并且 HTML 包含在页面 DOM 中的正确位置.
If css isn't being applied, then make sure that that your style sheets are actually being loaded, and that the HTML is being included in the proper place in your page's DOM.
这篇关于是否可以在 php 文件中包含 html 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以在 php 文件中包含 html 文件
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01