up vote 1 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

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

1 Answer

up vote 3 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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