PHP

スポンサーリンク
PHP

[PHP]Visual Studio CodeでPHPのインストールが見つからないエラーの対処法

Visual Studio CodeでPHPファイルを開いときに、 PHP のインストールが見つからないため、検証できません。 PHP 実行可能ファイルを構成するには、設定 'php.validate.executablePath' を使用...
HTML

[HTML]Content-Security-Policyの設定まとめ

HTMLメタタグ <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> .htaccess Header add Content-Se...
PHP

[PHP]URLの特定の文字列で条件分岐する方法

URLに「sample」の文字列が含まれるかどうかで条件分岐 <?php $url = $_SERVER; if(strstr($url,'sample') == true): ?> 文字列が含まれる時の処理 <?php...
htaccess

[htaccess]HTMLファイル内でPHPを動作させる

.htaccess Action myphp-script /php.cgi AddHandler myphp-script .php .html
スポンサーリンク