0
0

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.

【CakePHP3メモ②】コントローラだけ使ってみる

Last updated at Posted at 2017-04-22

前提

手順

コード

src\Controller

TestkureController.php
<?php

namespace App\Controller;

class TestkureController extends AppController {
	public $name = "Testkure";
	public $autoRender = false;
	public function index() {
		echo "TestkureController";
	}
	public function index2(){
		echo "index2";
	}
}

動作確認

http://localhost:8001/testkure
http://localhost:8001/testkure/index2

参考

PHPフレームワーク CakePHP 3入門
掌田 津耶乃
秀和システム
売り上げランキング: 15,411
0
0
0

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?