我想使用一些东西 - 如果我有编码,那么我添加News.class.php 公共功能保存并使用strtoupper。这很好用。 如果我从数据库中获取数据,我怎么能做些什么?
我的数据库:
id | title | body
1 | title1 | body1
2 | title1 | body2
等
如果我使用 $ news-> getTitle(),那么我有: title1 我必须做:
strtoupper($ news-> getTitle()) - 这很好,但我不会每次都添加我的函数解码。 我想使用$ news-> getTitle(),这是strtoupper。我能在哪里制作?哪个文件?我不会用Symfony编辑模型生成的auto。我想在 NewsTable.class.php 中做这个,但是怎么做?
答案 0 :(得分:1)
编辑您的News.class.php
(不是表格)文件并添加:
public function getTitle()
{
return urldecode($this->title);
}