phalcon php
仕事でphalcon php使うことになったのでメモ。
phalcon phpでぐぐると最速!とかでてきてこまるし、インストールとかぐぐるとapache(nginx)の設定からでてきて困る。 それ普通にビルトインサーバでいいやろ・・開発時もapache立ち上げる必要あるのか ってちがうのか?
phalcon project test
phalcon.sh webtools --action=enable
とするとwebtoolsなるものをプロジェクトに追加してくれる
.
├── app
│ ├── cache キャッシュ生成されたファイルとか
│ ├── config 設定フォルダ
│ │ ├── config.php 静的設定
│ │ ├── loader.php ローダー予め読み込みたいやつ
│ │ └── services.php サービスの登録
│ ├── controllers コントローラ
│ │ ├── ControllerBase.php
│ │ └── IndexController.php
│ ├── models モデル
│ └── views ビュー
│ ├── index
│ │ └── index.volt
│ ├── index.volt
│ └── layouts
├── index.html
└── public
ここから下は↑のpublicの下
├── css
│ ├── bootstrap
│ │ ├── bootstrap-responsive.min.css
│ │ ├── bootstrap.min.css
│ │ └── index.html
│ └── codemirror
│ ├── codemirror.css
│ ├── codephalcon.css
│ └── index.html
├── files
├── img
│ └── bootstrap
│ ├── glyphicons-halflings.png
│ └── index.html
├── index.php
├── js
│ ├── bootstrap
│ │ ├── bootstrap.min.js
│ │ └── index.html
│ ├── codemirror
│ │ ├── index.html
│ │ ├── lib
│ │ │ ├── codemirror.js
│ │ │ ├── codephalcon.js
│ │ │ └── index.html
│ │ └── mode
│ │ ├── clike
│ │ │ ├── clike.js
│ │ │ └── index.html
│ │ ├── css
│ │ │ ├── css.js
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── php
│ │ │ ├── index.html
│ │ │ └── php.js
│ │ └── xml
│ │ ├── index.html
│ │ └── xml.js
│ └── jquery
│ ├── index.html
│ └── jquery.min.js
├── temp
├── webtools.config.php
└── webtools.php