PHP Classes

Ascoos Framework: Framework of general purposes classes

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2025-03-31 (2 days ago) RSS 2.0 feedNot yet rated by the usersTotal: 24 This week: 1All time: 11,281 This week: 42Up
Version License PHP version Categories
afw 25.0.0Custom (specified...8.2System information, Files and Folders, L..., T..., P...
Description 

Author

This package is a framework of general-purpose classes.

It provides several traits and classes to be used by many types of applications.

Currently, the free edition provides classes and traits for:

- Control memory usage.

- Access disk drives, directories, and files.

- Array handles, extra child classes for analysis, and GD Charts.

- Cache handles, with handlers for Ascoos, files, Memcached, Opcache, and APCu.

Picture of ASCOOS CMS
  Performance   Level  
Innovation award
Innovation award
Nominee: 15x

Winner: 1x

 

Instructions

Current Version 25.0.0.11526 [2025-03-31]

For more examples of using the Ascoos Framework see the afw-examples package.

Example

<?php
/**
 * __ _ ___ ___ ___ ___ ___ ____ _ __ ___ ___
 * / _` |/ / / __/ _ \ / _ \ / / / __/| '_ ` _ \ / /
 * | (_| |\ \| (_| (_) | (_) |\ \ | (__ | | | | | |\ \
 * \__,_|/__/ \___\___/ \___/ /__/ \___\|_| |_| |_|/__/
 *
 *
 ************************************************************************************
 * @ASCOOS-NAME : ASCOOS CMS 24' *
 * @ASCOOS-VERSION : 24.0.0 *
 * @ASCOOS-CATEGORY : Framework (Frontend and Administrator Side) *
 * @ASCOOS-CREATOR : Drogidis Christos *
 * @ASCOOS-SITE : www.ascoos.com *
 * @ASCOOS-LICENSE : [Commercial] http://docs.ascoos.com/lics/ascoos/AGL.html *
 * @ASCOOS-COPYRIGHT : Copyright (c) 2007 - 2024, AlexSoft Software. *
 ************************************************************************************
 *
 * @package : ASCOOS FRAMEWORK (AFW)
 * @subpackage : ASCOOS FRAMEWORK Core TObject Example File
 * @source : afw/tests/TObject.getDeepProperty.php
 * @fileNo :
 * @version : 24.0.6
 * @created : 2024-12-15 07:00:00 UTC+3
 * @updated :
 * @author : Drogidis Christos
 * @authorSite : www.alexsoft.gr
 * @license : AGL-F
 *
 * @since PHP 8.2.0
 */

declare(strict_types=1);

require_once
"../autoload.php";

use
ASCOOS\FRAMEWORK\Kernel\Core\TObject;


class
TExampleObject extends TObject
{
   
/**
     * Constructor.
     *
     * @desc <English> Initialize the class with given properties.
     * @desc <Greek> ??????????? ??? ????? ?? ??? ??????????? ?????????.
     *
     * @param array $properties <English> An associative array of properties to initialize the class with.
     * <Greek> ???? ????????????? ??????? ????????? ??? ??? ???????????? ??? ??????.
     */
   
public function __construct(array $properties = [])
    {
       
parent::__construct($properties);
    }
}

/*
<English> Example of use the TExampleObject class
<Greek> ?????????? ?????? ??? ?????? TExampleObject
*/
$example = new TExampleObject([
   
'config' => [
       
'extensions' => [
           
'subExtension1' => ['version' => '1.0.0'],
           
'subExtension2' => ['enabled' => true]
        ],
       
'newProperty' => 'newValue'
   
]
]);

/*
<English> Get a deep property 'version' for 'subExtension1' in the 'extensions' array.
<Greek> ???????? ???? ?????? ????????? 'version' ??? ?? 'subExtension1' ???? ?????? 'extensions'.
*/
$version = $example->getDeepProperty(['config', 'extensions', 'subExtension1', 'version']);
echo
"Version: $version\n";

/*
<English> Get a deep property 'enabled' for 'subExtension2' in the 'extensions' array.
<Greek> ???????? ???? ?????? ????????? 'enabled' ??? ?? 'subExtension2' ???? ?????? 'extensions'.
*/
$enabled = $example->getDeepProperty(['config', 'extensions', 'subExtension2', 'enabled']);
echo
"Enabled: " . ($enabled ? 'true' : 'false') . "\n";

/*
<English> Get a deep property 'newProperty' at the 'config' level.
<Greek> ???????? ???? ?????? ????????? 'newProperty' ??? ??????? ??? 'config'.
*/
$newProperty = $example->getDeepProperty(['config', 'newProperty']);
echo
"New Property: $newProperty\n";

/*
<English> Print the properties for control
<Greek> ???????? ??? ????????? ??? ??????
*/
print_r($example->getProperties());

?>


Details

Changelog

25.0.0 [11526]

? 2025-03-31

Note

> The source code intended for commercial use cannot be provided as it is encrypted. > Ascoos Cms users will have access to all class functionalities, but the source code will remain hidden.

Default Global Variables

Objects - $html : [Only Commercial Edition]

> A utility class that provides methods for handling HTML.

```php
// Syntax
THTML::__construct(array $array = [], array $properties = [], ?TLoggerHandler $logger = null);

// USE
$html =& THTML::getInstance();
echo $html->br(2);

/*
 * Concatenates the label with an optional separator and a number of non-breaking spaces generated by the spaces() method.
 * @param string $label         The base label text.
 * @param int    $num           The number of non-breaking spaces to generate and append.
 * @param string $sep           An optional separator inserted between the label and the spaces. Defaults to an empty string.
 * @param bool   $before_space  Whether to add an extra space before the generated spaces.
 * @param bool   $after_space   Whether to add an extra space after the generated spaces.
 */    
echo $html->spacedLabel('Test Label', 5, ':', true, false);

echo $html->hr(3, 3);

$html->Free($html);

// Output: <br><br>Test Label: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br><br><hr><br><br><br>
```

  • `$objString` : [Only Commercial Edition]

    > This class provides helper functions for managing and manipulating string data consistently and in a reusable way.

    $objString =& TString::getInstance();
    
    $str = '  Greek:????????? ?????????????, "1\/ ????????  ';
    
    echo $html->spacedLabel('TString->escape', 4, ':', true);
    echo $objString->escape($str);
    echo $html->hr(2);
    echo $html->spacedLabel('TString->quote', 4, ':', true);
    echo $objString->quote($str, '\'');
    
  • `$utf8` : [Only Commercial Edition]

    > A utility class providing methods for handling UTF-8 strings, detecting and validating encoding.

    /
     * Repeat a string
     * @param string $string        The string to be repeated.
     * @param int $times            Number of times the string should be repeated.
     *                              Times has to be greater than or equal to 0. If set to 0, 
     *                              the function will return an empty string.
     * @param ?string $encoding     The character encoding to use. Defaults to 'UTF-8' if omitted or null.
     */ 
    echo $utf8->str_repeat('Greek:????????? ?????????????, ????????', 2)
    // output: Greek:????????? ?????????????, ????????Greek:????????? ?????????????, ????????
    

Arrays - $conf : Ascoos Framework Configuration Data

Paths - $AFW_PATH or $afw_path : Ascoos Framework Path - $AFW_KERNEL_PATH or $afw_kernel_path : Ascoos Framework Kernel Path - $AFW_KERNEL_IMPLEMENTATION_PATH : Ascoos Framework Kernel Implementation Path - $AFW_KERNEL_HANDLERS_PATH : Ascoos Framework Kernel Handlers Path - $AFW_EXTRAS_PATH : Ascoos Framework Extras Classes Path - $AFW_CONFIG_PATH : Ascoos Framework Configuration Path - $AFW_LIBS_PATH : Ascoos Framework Libraries Path - $AFW_LOGS_PATH : Ascoos Framework Logs Path - $AFW_CACHE_PATH : Ascoos Framework Cache Path

Global Functions

  • `formatBytes` : The `$bytes` argument can now accept float values. The result generation process has also been improved.

    // Global function
    formatBytes(float|int $bytes, int $precision = 2): string
    

Classes

  • `TArrayHandler` : - `__construct` : In the commercial edition, an argument supporting report handling has been added.

    ```php public function __construct(array $array = [], array $properties = [], ?TLoggerHandler $logger = null) ```

    - `getInstance` : An instance method has been added to the class. In the commercial edition, an argument supporting report handling has been added.

    ```php public static function &getInstance(array $array, array $properties = [], ?TLoggerHandler $logger = null) ```

    - `fromJSON` : 1. Added the `depth` argument for dynamic selection of the maximum nesting depth for JSON decoding. Default: 512.

    ```php public function fromJSON(string $json, ?string $key = null, int $depth = 512): bool ``` 2. The character encoding of retrieved JSON file content is now UTF8.

    - `fromJSONFile` : 1. Added the `depth` argument for dynamic selection of the maximum nesting depth for JSON decoding. Default: 512.

    ```php public function fromJSONFile(string $filePath, ?string $key = null, int $depth = 512): bool ```

    - `toJSON` : 1. Fixed storage error in JSON files when saving UTF8 characters. 2. Added the `$array` argument for supporting an external array. If not provided, it returns the internal array `$this->array`.

    ```php public function toJSON(?array $array = null): string ``` 3. Added new functionality.

    - `toJSONFile` : 1. Added the `$array` argument for external array selection. If not provided, it returns the internal array `$this->array`.

    ```php public function toJSONFile(string $filePath, ?array $array = null) ```


  Files folder image Files (90)  
File Role Description
Files folder imageconfig (1 file)
Files folder imagedocs (2 directories)
Files folder imageextras (1 file, 2 directories)
Files folder imagekernel (11 files, 2 directories)
Files folder imagelibs (1 file, 1 directory)
Files folder imagetests (3 files)
Files folder imagetmp (1 file, 1 directory)
Files folder imagetools (1 file)
Accessible without login Plain text file autoload.php Aux. Ascoos Autoload Framework
Plain text file autoloader.php Class Class source
Accessible without login Plain text file CHANGELOG.md Doc. Changelog data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE_AGL-F.md Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
Downloadafw-2025-03-31.zip 209KB
Downloadafw-2025-03-31.tar.gz
Install with ComposerInstall with Composer
Needed packages  
Class DownloadWhy it is needed Dependency
PHP 8 Backwards Compatibility Library Download .zip .tar.gz This library included on Ascoos Framework 24 Optional
 Version Control Reuses Unique User Downloads Download Rankings  
 0%14
Total:24
This week:1
All time:11,281
This week:42Up