我正在编写一个PHP库,并且希望在访问特定路由时加载特定脚本。
例如,当请求.star-ratings-css {
width: 100px;
}
.star-ratings-css-top {
display: block;
height: 22px;
position: relative;
}
.star-ratings-css-bottom::before {
color: #167ac6;
content: "★★★★★";
font-size: 22px;
position: absolute;
}
.star-ratings-css-top::before {
color: #f4b414;
content: "★★★★";
font-size: 22px;
position: relative;
}
时,我要加载脚本<div class="star-ratings-css">
<div class="star-ratings-css-bottom"></div>
<div class="star-ratings-css-top" style="width: 31%"></div>
</div>
。
我曾考虑过将重定向放在htaccess文件中,但这会使用户感到不舒服,我认为必须有更好的方法。
我还考虑编写一个Composer安装脚本,该脚本在用户安装我的库时被调用。
我该怎么办?也许简短描述。 谢谢:)
答案 0 :(得分:0)
为什么不尝试使用相对文件路径加载脚本。像这样:
require_once( DIR 。'/ .. / vendor / MYLIBRARY / login.php');
当然可以编辑路径以更正值。