PreferencesからDocument Rootを毎回切り替えるのが面倒。
該当箇所のコメントアウトを解除
# Virtual hosts
PreferencesからDocument Rootを毎回切り替えるのが面倒。
該当箇所のコメントアウトを解除
# Virtual hosts
テンプレート内に以下を突っ込む。
Query Monitor と一緒に使えば効果的。
<?php
var_dump( $wp_rewrite );
1, command + shift + P でコマンドパレットを開く
2, shell と検索して、 Shell Command: Install 'code' command in PATH をインストール
3, あとはatomと同じような感じで使える
// ユーザー設定 (⌘ + ,)
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"html": {
"attr_quotes": "single"
},
"jsx": {
echo
は便利なんだけど、 説明 にあるように echo — 1 つ以上の文字列を出力する
でしかないので別のデバッグ方法も知っておくとよい。
$s = 'hoge';
var_dump($s);
The language server needs at least PHP 7 installed. Version found: 5.6.30
言語モードをPHPにするエラーメッセージが表示される。
PHP7系以上が必要とのことだけど、環境に入ってるPHPのバージョンが足りない。
なので、MAMPで使われてるPHP7を指すことでエラーを回避することに。
ユーザー設定に以下を設定
// The path to a PHP 7+ executable.
"php.executablePath": "/Applications/MAMP/bin/php/php7.1.8/bin/php",
これでエラーはなくなる。
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |
// webpack.config.js
externals: {
jquery: 'jQuery'
}
/** | |
* 備忘録 | |
* @link https://stackoverflow.com/questions/31891694/handle-404-errors-in-urlfetchapp-fetch | |
*/ | |
function fetchPage() { | |
var response = UrlFetchApp.fetch("http://ctrlq.org/404", {muteHttpExceptions: true}); | |
if (response.getResponseCode() == 404) { | |
Logger.log("Web page not found"); | |
} |