CakePHP中如何获取表的字段名

发布于 2024-11-04 13:17:54 字数 87 浏览 0 评论 0原文

我是 CakePHP 的新手。我想读取控制器中表的字段名称。

我希望控制器列出表中的所有字段名称。我该怎么做?

I am a complete newbie in CakePHP. I want to read the field names of the table in the controller.

I want the controller to list all the field names in the table. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦太阳 2024-11-11 13:17:54

使用以下代码片段获取字段名称数组(将“YourModel”替换为您的模型名称):

array_keys($this->YourModel->getColumnTypes());

Use the following snippet to get an array of the field names (replace "YourModel" with the name of your model):

array_keys($this->YourModel->getColumnTypes());
苏别ゝ 2024-11-11 13:17:54

就像
$this->模型->schema()

as simple as
$this->Model->schema()

甜柠檬 2024-11-11 13:17:54

对于 CakePHP 3.x

$this->Model->schema() - 返回 Schema 对象。

$this->Model->schema()->columns() - 以数组形式返回表中的所有列。

For CakePHP 3.x

$this->Model->schema() - Returns the Schema object.

$this->Model->schema()->columns() - Returns all of the columns in the table in an array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文