Skip to content

Instantly share code, notes, and snippets.

@ko31
Last active December 9, 2015 10:16
Show Gist options
  • Save ko31/187cc22df69227c1f3cd to your computer and use it in GitHub Desktop.
Save ko31/187cc22df69227c1f3cd to your computer and use it in GitHub Desktop.
【CodeIgniter】コントローラサンプル
<?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