Download the PHP package gorgo/golib without Composer
On this page you can find all versions of the php package gorgo/golib. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package golib
Short Description shared php tools lib.
License MIT
Homepage https://github.com/swaros/golib
Informations about the package golib
golib
basic php tools lib. Includes a xpath based Xml Reader and Define some Types like Enums or Propertie Classes
Install
you can get this lib via composer composer require gorgo/golib
Enum
The basic Enum Class provides a easy Way to check against valid Entires. Extends from Enum and define a Array inside the method 'getPossibleValueArray()' that contains all possible values.
now simply initiate the new class by using the value that should be used.
ConstEnum
this is a Enum that can be used just by adding 'const' like so
the usage is the same as Enum but you can use the 'const' what improves the codestyle.
Props
the Props
class is the Object oriented way to work with Content that will be provided as Array.
For example Database results:
The regular way to work with these looks like so
That means youre code depends on the database design. And if you access this data later, for exampel in another class, you have to know about the database structure. Also it will be difficult if on some point the database will be refactored.
Props
is a Container that forces OOP Style to accessing this data.
Like so:
the usage looks like over engineered but just shows the different way to acess the data.
All modern IDE's support code completion so the usage of Props
will help you to get the right propertie.
All versions of golib with dependencies
ext-simplexml Version *