0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPでJavaScriptファイルを動的に生成する

Posted at

サーバーサイドのリソースを使用して、クライアントに読み込ませるJavaScriptファイルを動的に変化させたい場合などに

まず、JavaScriptファイルとして読み込ませるPHPファイルを用意します。

js.php
<?php
header('Content-Type: application/x-javascript; charset=utf-8');
$date = date('Y/m/d H:i:s');

$script = <<< EOF
function displayServerDatetime(){
    alert('{$date}');
}
EOF;

echo $script;

header関数でContent-Typeをapplication/x-javascriptとして指定することで、ブラウザ側でJavaScriptファイルとして解釈してくれます。

あとは、HTMLをPHPで出力するときと同じ要領でJavaScriptのコードを書いていくだけです。

index.html
<html>
<head>
  <script src="js.php"></script>
</head>
<body>
</body>
  <script>
  displayServerDatetime();
  </script>
</html>

HTML側では、上記のように通常のJavaScriptファイルと同じように読み込むだけです。

0
3
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?