Skip to content

Instantly share code, notes, and snippets.

@NorihikoMoriyama
Last active December 28, 2015 15:38
Show Gist options
  • Save NorihikoMoriyama/7522679 to your computer and use it in GitHub Desktop.
Save NorihikoMoriyama/7522679 to your computer and use it in GitHub Desktop.
[cakephp]cronを使ってみる
/usr/bin/php /***/app/Console/cake.php Importcsv index args -app /***/app

・php へのパス
・cake.php へのパス
・シェル名(=Shell クラスの名前から末尾の”Shell”を除いたもの)
・メソッド名
・引数
・コマンド”-app”
・appまでのパス

<?php
class ImportcsvShell extends AppShell
{
var $uses = array('Serials');
function main(){}
function index(){
$arg0 = $this -> args[0]; //コマンドで渡した引数の受取
$data = $this->Serials->find('all');
var_dump($data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment