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  
Name: ASCOOS CMS <contact>
Classes: 26 packages by
Country: Greece Greece
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

  Files folder image Files (90)  /  config  
File Role Description
  Accessible without login Plain text file conf.php Aux. Configuration script

  Files folder image Files (90)  /  docs  
File Role Description
Files folder imagechangelogs (1 file)
Files folder imageclasses (7 files)

  Files folder image Files (90)  /  docs  /  changelogs  
File Role Description
  Accessible without login Plain text file changelog-11526.en.md Doc. Ascoos Framework 25.0.0.11526 Changelog file

  Files folder image Files (90)  /  docs  /  classes  
File Role Description
  Accessible without login Plain text file TArrayAnalysisHandler.md Data Auxiliary data
  Accessible without login Plain text file TArrayHandler.md Data Auxiliary data
  Accessible without login Plain text file TArrayMessagePackHandler.md Data Auxiliary data
  Accessible without login Plain text file TArrayMongoBSONHandler.md Data Auxiliary data
  Accessible without login Plain text file TDatesHandler.md Data Auxiliary data
  Accessible without login Plain text file TError.md Data Auxiliary data
  Accessible without login Plain text file TObject.md Data Auxiliary data

  Files folder image Files (90)  /  extras  
File Role Description
Files folder imagearrays (5 files)
Files folder imageencoders (8 files)
  Accessible without login HTML file index.html Doc. Documentation

  Files folder image Files (90)  /  extras  /  arrays  
File Role Description
  Accessible without login HTML file index.html Doc. Documentation
  Plain text file TArrayAnalysisHandler.php Class Handles advanced data analysis for arrays.
  Plain text file TArrayGraphHandler.php Class Handles the creation of graphical representations from array data
  Plain text file TArrayMessagePackHandler.php Class Class source
  Plain text file TArrayMongoBSONHandler.php Class Class Mongo BSON Handles

  Files folder image Files (90)  /  extras  /  encoders  
File Role Description
  Plain text file base64.php Class Handles Base64 encoding and decoding
  Plain text file bencode.php Class Handles Bencode encoding and decoding.
  Plain text file gzip.php Class Handles Gzip compression and decompression.
  Plain text file hex.php Class Handles hexadecimal encoding and decoding.
  Plain text file json.php Class Handles JSON encoding and decoding with UTF-8 support.
  Plain text file serialize.php Class Handles PHP serialize/unserialize encoding and decoding.
  Plain text file url.php Class Handles URL encoding and decoding (percent-encoding).
  Plain text file yaml.php Class Handles YAML encoding and decoding.

  Files folder image Files (90)  /  kernel  
File Role Description
Files folder imagehandlers (1 file, 1 directory)
Files folder imageimplementation (3 files)
  Plain text file coreArrays.php Class Class Arrays Handles source
  Plain text file coreCache.php Class Class source
  Plain text file coreConsts.php Class Main Core Constants Handles
  Plain text file coreDates.php Class Class source
  Plain text file coreDisks.php Class Core Disks Class source
  Plain text file coreEconomics.php Class Handles arrays with economics formulas
  Plain text file coreEncoders.php Class Handles encoding and decoding data
  Plain text file coreFunctions.php Class Core Functions
  Plain text file coreGraphs.php Class Graphs Core Handles
  Plain text file coreKernel.php Class Core Class source
  Accessible without login HTML file index.html Data Empty page

  Files folder image Files (90)  /  kernel  /  handlers  
File Role Description
Files folder imagecache (6 files)
  Accessible without login HTML file index.html Doc. Documentation

  Files folder image Files (90)  /  kernel  /  handlers  /  cache  
File Role Description
  Plain text file apcu.php Class Class source
  Plain text file ascoos.php Class Class source
  Plain text file files.php Class Class source
  Accessible without login HTML file index.html Doc. Documentation
  Plain text file memcached.php Class Class source
  Plain text file opcache.php Class Class source

  Files folder image Files (90)  /  kernel  /  implementation  
File Role Description
  Accessible without login HTML file index.html Data Empty page
  Plain text file Methods.php Class Class source
  Plain text file TDriveInfo.php Class Class source

  Files folder image Files (90)  /  libs  
File Role Description
Files folder imagephpbcl8 (7 files, 2 directories)
  Accessible without login HTML file index.html Data Empty page

  Files folder image Files (90)  /  libs  /  phpbcl8  
File Role Description
Files folder imagesrc (3 files, 1 directory)
Files folder imagetest (13 files)
  Accessible without login Plain text file CHANGELOG.md Data Auxiliary data
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login HTML file index.html Doc. Documentation
  Accessible without login Plain text file libin.json Data Auxiliary data
  Accessible without login Plain text file LICENSE_AGL-F.md Lic. License text
  Plain text file phpbcl8_autoload.php Class Class source
  Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files (90)  /  libs  /  phpbcl8  /  src  
File Role Description
Files folder imagecompat (10 files)
  Plain text file coreCompatibilities.php Class Class source
  Accessible without login HTML file index.html Doc. Documentation
  Plain text file phpBCL.php Class Class source

  Files folder image Files (90)  /  libs  /  phpbcl8  /  src  /  compat  
File Role Description
  Plain text file compat_consts.php Class Class source
  Plain text file compat_deprecated.php Class Class source
  Plain text file compat_error.php Class Class source
  Plain text file compat_php81x.php Class Class source
  Plain text file compat_php82x.php Class Class source
  Plain text file compat_php83x.php Class Class source
  Plain text file compat_php84x.php Class Class source
  Plain text file compat_php85x.php Class Class source
  Plain text file compat_similar.php Class Class source
  Accessible without login HTML file index.html Doc. Documentation

  Files folder image Files (90)  /  libs  /  phpbcl8  /  test  
File Role Description
  Accessible without login Plain text file 83__mb_str_pad.php Example Example script
  Accessible without login Plain text file 84_array_all.php Example Example script
  Accessible without login Plain text file 84_array_any.php Example Example script
  Accessible without login Plain text file 84_array_find .php Example Example script
  Accessible without login Plain text file 84_array_find_key.php Example Example script
  Accessible without login Plain text file 84_bcdivmod.php Example Example script
  Accessible without login Plain text file 84_grapheme_str_split.php Example Example script
  Accessible without login Plain text file 84_intltz_get_iana_id.php Example Example script
  Accessible without login Plain text file 84__http_get_last_response_headers.php Example Example script
  Accessible without login Plain text file 84__mb_trim.php Example Example script
  Accessible without login Plain text file 84__mb_ucfirst.php Example Example script
  Accessible without login Plain text file 85_php_build_date.php Example Example script
  Accessible without login Plain text file example.php Example Example script

  Files folder image Files (90)  /  tests  
File Role Description
  Accessible without login Plain text file disks_drives.php Example Example script
  Accessible without login Plain text file TObject.getDeepProperty.php Example Example script
  Accessible without login Plain text file TObject.setDeepProperties.php Example Example script

  Files folder image Files (90)  /  tmp  
File Role Description
Files folder imagecache (1 file)
  Accessible without login HTML file index.html Doc. Documentation

  Files folder image Files (90)  /  tmp  /  cache  
File Role Description
  Accessible without login HTML file index.html Doc. Documentation

  Files folder image Files (90)  /  tools  
File Role Description
  Accessible without login HTML file index.html Data Empty page

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