PHP code example of o-log / php-components

1. Go to this page and download the library: Download o-log/php-components library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

o-log / php-components example snippets



    namespace Components\HeaderComponent;

    use OLOG\Component\ComponentTrait;
    use OLOG\Component\InterfaceComponent;

    class HeaderComponent implements InterfaceComponent
    {
        use ComponentTrait;

        static public function render()
        {
            $_component_class = \OLOG\Component\GenerateCSS::getCssClassName(__CLASS__);