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 8022149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T22:11:08+00:00 2026-06-04T22:11:08+00:00

i wanna import and view excel file using php, so i have a found

  • 0

i wanna import and view excel file using php, so i have a found a library class php-excel-reader

when we use php, we just include the file in the page using include("nameoffile.php");

i don’t know how to do that using symfony.
where should i import ? and how?`

  • 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-06-04T22:11:10+00:00Added an answer on June 4, 2026 at 10:11 pm

    This is for PHPExcel as opposed to the reader but the principle is the same. No need to actually include files. They can be autoloaded.

    Add to your autoload.php:

    $loader->registerPrefixes(array(
        'Twig_Extensions_' => $ws.'Symfony/vendor/twig-extensions/lib',
        'Twig_'            => $ws.'Symfony/vendor/twig/lib',
        'Zend_'            => $ws.'ZendFramework-1.11.11/library',
        'PHPExcel'         => $ws.'PHPExcel/Classes' // Change to support the reader
    ));
    

    After which you can do something like:

    $reader = new \Spreadsheet_Reader();
    

    Note the leading slash is required to handle the non-namespaced library.

    I abstracted things just a bit by using a service:

    /* ==================================================
     * Wrap interface to the excel spreasheet processing
     */
    namespace Zayso\CoreBundle\Component\Format;
    
    class Excel
    {
        public function newSpreadSheet()
        {
            return new \PHPExcel();
        }
        public function newWriter($ss)
        {
            return \PHPExcel_IOFactory::createWriter($ss, 'Excel5');
        }
        public function load($file)
        {
            return \PHPExcel_IOFactory::load($file);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanna load a video file into NSData,if I use dataWithContentsOfFile:,it will spend lots
I wanna diplay a Stopwatch timer... using Asp.Net C#... I have looked through many
I was trying to use BDD technique to check the import picture process using
I'm using re.findall() to extract some version numbers from an HTML file: >>> import
I wanna know if this is possible. I have an external .css file in
I wanna get the Timedate value from another page using request.querystring and then use
I have this batch file @ECHO OFF ECHO Please Enter Path of the View,
I wanna encpryt a string with a key, using HmacSHA256. The code everyone use
I'm using a CSV file and Import-Csv to get a bunch of custom aliases
i wanna make my own application to reach my mails. i'm using office 365

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.