Recommend this page to a friend! |
Download .zip |
Info | View files (5) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2010-02-14 (6 years ago) | Not enough user ratings | Total: 325 | All time: 6,797 This week: 1,148 |
Version | License | PHP version | Categories | |||
structobject 1.0 | GNU General Publi... | 5.0 | PHP 5, Data types |
Description | Author | ||||||||||||||
This class can be used to create objects from list of strict type variables. Innovation Award |
|
=== What is StructObject === StructObject is a PHP-Class what behaviors a little bit like the struct in C/C++. === Where does this class come from === This class comes from my CMS Ciwii which is not released yet. === How to use StructObject === It is simple. You create a new instance of StructObject and define your properties, like this: <?php require_once "Struct.php"; $struct = new StructObject ( "property1, property2 = with default value, property3 = ' with another default value ', property4A = Default-Value, property5:integer = 5" ); ?> So, there are many ways to define a property. You can even define a property with multiple allowed types: <?php //Code from above $struct2 = new StructObject ( "property:string:integer" ); ?> To get its value, you call it like a real property: <?php //Code from above echo $struct->property2; ?> The absolute-variant gets initialized when writing an upper A to the end of property-name. Now you can set values to the property. In our example: <?php //Code from above $struct->property4 = "Hello world"; ?> If you want to output the content of the property, you can write the example above. If you only want to output the content, if it is not default, write an upper A to the end of its name: <?php /* If value of $struct->propertyA would be Default-Value ** an empty string would get returned */ echo $struct->property4A; ?> Another feature is a strict class-type as property-value. To define something like that: <?php $struct3 = new StructObject ( "property:object[MyClass]" ); ?> Now the following lines would stop executing the script with an error-message: <?php //Code from above $struct3->property = 'a string'; ?> |
Files |
File | Role | Description |
---|---|---|
Struct.php | Class | Main-file |
example.php | Example | Example |
example2.php | Example | Creating your own Class by extending StructObject |
LICENCE | Lic. | GNU-Licence |
README | Doc. | Tutorial |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.