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.