dourao1877 2013-05-13 10:32
浏览 25
已采纳

如何在symfony2中访问自定义类?

I have created a custom class with few method in it. e.g.

 class MyClass{

  method1 ();

  method2();
}

Now I want to create object of this class and use it inside a controller method

class DefaultController{

public function myAction()
{
  //here I want to able to create object of MyClass, is it possible? 
}

}

Q1. where should I store this class in symfony2 structuere e.g. inside src dir?

Q2. How can I use this class method inside the controller of a bundle?

  • 写回答

1条回答 默认 最新

  • dongqiong8021 2013-05-13 10:39
    关注

    If you put your class in the src folder, it will be autoloaded, ie: you can simply do:

    $foo = new \MyClass();
    $foo->method1();
    

    in your Controller.

    A good approach would be to put your classes in the Bundle you are likely to use them:

    src/YourCompany/YourBundle/MyClass.php
    

    In this way however don't forget to put the namespace declaration on top of your MyClass file:

    namespace YourCompany\YourBundle;
    class MyClass{
       //..
    }
    

    You can put your classes on the base folder of your bundle, or use other nested folders to better differentiate a set of classes from each others, for eg:

    src/YourCompany/YourBundle/Listener/MyClassListener.php
    src/YourCompany/YourBundle/Manager/MyClassManager.php
    

    For more info see the Best practice on Bundles structure of Symfony2

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 shape_predictor_68_face_landmarks.dat
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制