LoginSignup
0

More than 5 years have passed since last update.

PHP phalconメモ用

Posted at

臨時更新して適当に

!issetとか否定(NOT)

は 「is」の後に「not」を入れて演算子を書く

hoge.volt
#php
#if(!isset(hoge)){
#  pirnt("実行されます")
#}

#phalconでやる時
 {% if hoge is not defind %}
    {{ "実行されます" }}
 {% endif %}

情報少ないし、公式の英語大変やし疲れる。

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