Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get a list of file names using the url helper but I'm getting the following error:

Call to undefined function get_filenames()

I auto-loaded the url helper and then explicitly loaded it in the Controller and I still get the error. Why am I getting this error?

Controller:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Downloads extends CI_Controller {

    public function index()
    {   
        $this->load->helper("url");
        $this->template->write_view('content', 'download_view');
        $this->template->render();
    }
}

View:

<? get_filenames("/somefolder"); ?>
share|improve this question
it should be file helper – Can Geliş Feb 2 at 19:10
That was so stupid of me. Woops. Thank you :) – Sheldon Feb 2 at 19:17

2 Answers

up vote 7 down vote accepted

You have loaded the url helper which does not contain anything similar to get_filenames(). Maybe you meant to load the file helper instead:

$this->load->helper('file');
share|improve this answer
Bit of a senior moment. Thanks. – Sheldon Feb 2 at 19:18

You don't have a function named get_filenames() defined. May be need to include the file correctly. Trying using $this with the name.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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