vote up 1 vote down star

I have a PHP script, it is located in the same computer as my Symfony application.

Now the issue is how can I, in the PHP script, call the Symfony's model layer? The reason for me to ask this is because for the PHP script, it needs to access a database that Symfony application is accessing. So I think it might help if I can call the Model layer directly.

Of course I can do a raw SQL select in my independent PHP script, but that's not what I really wanted.

flag

49% accept rate
1  
Looking at how tests are set up may help you. – niteria Jul 26 at 11:32
Is Symfony application using Propel or Doctrine? – niteria Jul 26 at 11:37
Propel, but does it matter? – Ngu Soon Hui Jul 26 at 12:32

1 Answer

vote up 3 vote down check

This works for me, code taken from jobeet tutorial:

require_once('SYMFONY_DIR/config/ProjectConfiguration.class.php');
$configuration = ProjectConfiguration::getApplicationConfiguration( 'frontend', 'test', true);
new sfDatabaseManager($configuration);
$job = JobeetJobPeer::doSelectOne(new Criteria());
print_r($job);

You may want to adjust your path and configuration.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.