Last active
December 9, 2015 10:16
-
-
Save ko31/187cc22df69227c1f3cd to your computer and use it in GitHub Desktop.
【CodeIgniter】コントローラサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
class Batch extends CI_Controller { | |
public function sample($first_name = 'Ichiro', $last_name = 'Suzuki') | |
{ | |
echo "Hello {$first_name} {$last_name}!".PHP_EOL; | |
echo "done!".PHP_EOL; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment