常用的php代码实例Thinkphp 常用函数
A 函数(基本是Action 的简写)
  A 函数是用来实例化我们的Action 类的,例如我们的程序有2个Action 分别是IndexAction 和TestAction ,在 IndexAction 中有个myHello 方法能够输出hello world ,如果我也想在TestAction 中也输出同样一段文字怎么办?最原始的方法首先我们导入
IndexAction.class.php 这个文件,然后new IndexAction ,最后调用myHello 方法才行。代码一般为 :
PHP 代码
那么,如果我们用A 函数,怎么写呢?
PHP 代码
?("@.Action.Index");  //导入本项目目录下Action 目录下的Index.class.php 文件。  class  TestAction extends  Action {      public  function  index ()      {          $index=new  IndexAction();//实例化IndexAction          echo  $index->myHello();//调用myHello()方法      }  }  ?>
class  TestAction extends
Action {      public  function  index ()
{
$index=A("Index");
echo  $index->myHello();      }  }  ?>
?>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。