Jump to content

Using SPL Data Structures


kaujot

Recommended Posts

Hi,

 

I'm trying to implement a doubly linked list as described by SPL. This is my code:

 

<?php

$list = new SplDoublyLinkedList();

?>

 

That's how they create a list in the manual, so, in theory, it's correct. However, I receive this error:

 

 

Fatal error: Class 'SplDoublyLinkedList' not found in /var/www/joomla/trunk/components/com_camps/views/camp/tmpl/default.php on line 61

 

My system is running PHP 5.2.4, and the docs tell me that the SPL extension is available and compiled by default in PHP 5.0.0. However, I haven't been able to find any information at all on how to access the data structures that I really need to implement?

 

Anyone know?

 

Thanks so much.

Link to comment
https://forums.phpfreaks.com/topic/147955-using-spl-data-structures/
Share on other sites

Have you checked out phpinfo to make sure spl is available?

 

Yes, it is, though the DoublyLinkedList is among the classes that phpinfo says are available to SPL. Is there some later version I'm missing? I didn't see anything in the documentation to make me think that DDLs were only available to a certain version of SPL, though I could have easily missed that.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.