我如何找出 symfony 中的学说模型是否存在方法?
我有一个具有 getSomethingId() 方法的学说模型
,并且我正在制作一个自动表单生成器供公司内部使用,
我如何检查我的模型是否具有此方法?
我尝试过使用 php 的 method_exists,但每个方法都返回 false,我该怎么办? 谢谢
I have a doctrine model that has a method getSomethingId()
and I'm making something of an automated form generator for internal use in the company
how can I check if my model has this method?
I've tried with php's method_exists but it returns false for every method, what can I do?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会尝试 is_callable()
I'd try is_callable()
普鲁巴阿西
prueba asi