モデルでアクセスできる変数をコントローラーに入れたかったのです。例えば、
<?php class MyController extends AppController{
function myFunction(){
// codes here
myvariable = "anything";
}
}
?>
そして私のモデルでは、
<?php class myModel extends AppModel
function myModelFunction(){
// here i will use my variable to check on something.
if(myVariable != 0){ // myVariable here is from the controller
// do something here
}
}
?>
さて、私のコードは可能ですか?つまり、コントローラーから変数にアクセスし、それをモデルでチェックなどに使用することは可能ですか?ありがとう。