Skip to content

Instantly share code, notes, and snippets.

@ko31
Created December 9, 2015 10:37
Show Gist options
  • Save ko31/7c886cbfae1f34a3f8d3 to your computer and use it in GitHub Desktop.
Save ko31/7c886cbfae1f34a3f8d3 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')
{
if (!is_cli())
{
set_status_header(403);
echo "403 Forbidden".PHP_EOL;
return;
}
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