Welcome Guest, Not a member yet? Register   Sign In
ActiveRecord for CodeIgniter: Rails-style model interactions
#13

[eluser]nmweb[/eluser]
[quote author="Buddy Bradley" date="1190465847"][quote author="nmweb" date="1190425550"]Great work, I really like it and am definitely gonna use it in my next project. I, however, need to tweak it to PHP4. At first glance this seems feasible, or is there anything exotic you used?[/quote]
I'm afraid it's impossible (AFAIK) to convert this to PHP4, due to its use of the __call() function. It catches any calls to non-existent methods, such as find_by_my_random_database_field('foobar'), and re-routes them to the right method - in that example, it would end up at find_by('my_random_database_field', 'foobar'). You can't replicate that in PHP4 without creating all those find and fetch methods explicitly, which would be far too much work.

Read more about PHP5's overloading here[/quote]

Thanks but the problem fixed itself on my side. My host is about to move me to the php5 server. I indeed was afraid the __call() would be problematic.


Messages In This Thread
ActiveRecord for CodeIgniter: Rails-style model interactions - by El Forum - 09-22-2007, 02:32 AM



Theme © iAndrew 2016 - Forum software by © MyBB