English 中文(简体)
报表1.4 模块之间表格数据的转移
原标题:Symfony 1.4, transferring table data between modules

表格使用的是图西马尔,为每台纸张制作一个模块。 因此审议<代码>用户 表格可在用户模块中迅速修改,并有一个简单的例子:

$users = new users;
$id = $users->getUserId();

我是这样。 然而,如果我在另一个模块里有自己的制片,那么什么呢? 我如何从那里获取用户数据?

次要问题: 能否找到从某种模块中可以获取的所有变量? 我正在讨论一个项目,与结构和可变的供应/绕行相差不多。 任何工具/工具?

最佳回答

该表用于生成MODEL物体,而不是模块。 你的模型界定了你的项目的基本数据结构,而你的模块将行动和观点结合起来。

就像你再使用假名生成的行政单元一样,这是否正确? 如果是的话,请更具体地说明你想要利用不同模式的情况。 是否列入清单? The edit form? 等等。

一般而言,你的模型物体可从贵项目内任何地方获取,但不限于特定模块,甚至包括(例如,冒犯、背后)。 因此,可以从一项行动中获取许多模式。 在您的情形下,您可尝试<条码>分明:可使用(用户)->find(USER_ID_HERE),其中将列出具体<条码>Users。

Your example code has an error in it. It should be $users = new users(); Once fixed, that code should work anywhere from within your application.

http://netbeans.org/“rel=“nofollow”>Netbeans 。 其汽车结业和编码反映相当好。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签