Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6380521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:16:43+00:00 2026-05-25T02:16:43+00:00

I have created a task in Symfony 1.4 that loads in some CSV files

  • 0

I have created a task in Symfony 1.4 that loads in some CSV files into a table – very simple ->

protected function execute($arguments = array(), $options = array())
{
    $databaseManager = new sfDatabaseManager($this->configuration);
    $connection = $databaseManager->getDatabase($options['connection'])->getConnection();

    ......

    $query = "LOAD DATA INFILE '" . $cdrfile . "'
       INTO TABLE .... 

    etc

    $connection->execute($query);
}

But i want to reuse this section of code else where – So i create a new PHP Class and created a new static method called loadDataFromCSV.

I put all of the code into that method and then called class::loadDataFromCSV …

This gave me some problems – first the $this keyword in the method is not valid as the class it not an object (ie not instantiated) – so I could instantiate the class and then call the method class->loadDataFromCSV – the next problem is the $this->configuration on the first line – do I have to pass in the configuration to the method to get it working ?

Whats the simplest way to create a simple method to run a simple piece of code – without having to pass lots of variables around.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T02:16:43+00:00Added an answer on May 25, 2026 at 2:16 am

    Short answer: Use DI Container.

    Long answer: You basically ask how to set object dependencies as your class depends on configuration object. There are two ways to do this. Hardcode dependency in your class. e.g. Registry::getInstance()->get('config'); and to use dependency injection. Dependency injection is better solution as far as you can pass any config instance. Existing Object, new object, mock object for unit testing, or other config implementation. There are two types of dependency injection. inject dependency via constructor (e.g. new Object(new Dependency())) or via setter.

    $o = new Object();
    $o->setDependency($dependency);
    

    If your object has many dependencies the code may become little unreadable in both ways. The solution is to use Dependency Injection Container which inject automatically all the dependencies for you. Your client code is still one simple line: DIContainer::create('object');. Create method creates an instance of class, inject all the dependencies and returns the object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a task for MSBuild that is to be used by developers
I have created a custom workflow activity in CRM that creates a task. The
I have created a C++ Office 2007/2010 add-in that exposes a custom task pane
I have created a custom task that is used to create SQL compact databases
I have a web application that performs certain task, and have created a tabbed
I have created a simple form which is loading a csv file with few
I have created a PHP-script to update a web server that is live inside
I have created a UserControl that has a ListView in it. The ListView is
I have created a few small flash widgets that stream .mp3 audio from an
i have created a workflow activity that do give the item creater of a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.