Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php を使用して動的にスクリプトまたはスタイルをヘッドに追加する方法。
そのページに必要なロジックに基づいてさまざまなスクリプト/スタイルをロードするページがサイトにあります。ヘッドを追加して動的にコードを挿入する方法は?
.netでは、これにプレースホルダーを使用しますが、php(javascriptではなく)でそれを行う方法はありますか。
ありがとう、ダニエル
何かを設定する (または設定しない) 場所で (たとえば) if 条件を作成すると、次のように使用できます。
include_once(additionalcodefile.php);
PHP インクルード用
またはCSSリンクをレンダリングする
print "<link rel=[.....]>";
同様に、js:
print "<script type=[.....]>";