vote up 2 vote down star
1

I'm playing around with CodeIgniter, hoping to convert some of my old, ugly PHP into a more maintainable framework. However, I've come across a rather frustrating roadblock - I can't seem to define functions in my views. Any time I try I get a completely blank page back, and when I look in the debug log the processing seemed to stop after the view was loaded.

Can I define functions within views? If not, why not, and what workarounds would you suggest? (the function has to do with formatting output strings)

flag

77% accept rate
It is possible to define functions in views - I've done it before with no problems. I'd need more information to diagnose the problem. – Steven Oxley Dec 8 '08 at 12:10
It is possible. I know, it's what I do for my views. – Thorpe Obazee Mar 20 at 6:30

2 Answers

vote up 6 vote down check

Define your functions in a helper and load them from the controller. That way you can reuse the functions in other views, as well.

link|flag
Worked like a charm. :) – Kyle Cronin Nov 9 '08 at 15:34
vote up 0 vote down

I'm not familiar with CodeIgnitor, but it could be including your templates multiple times. Try wrapping your function in a check:

if (!function_exists('myfunc'))
{
    function myfunc() {}
}

CodeIgnitor is probably swallowing errors, so you could also try flushing buffers immediately before your function:

while(ob_end_flush()){}
error_reporting(E_ALL);
ini_set('display_errors', 1);

In reality though, you should probably make your string formatting code a bit more general. Your template is not really a good place to start adding functions. You'll begin duplicating code, and it defeats the purpose of having templates at all. I'd suggest experimenting with CodeIgnitor's Helpers and Plugins

link|flag

Your Answer

Get an OpenID
or

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