Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
phpBCL-1.1.3.zip | 2024-10-22 | 579.2 kB | |
1.1.3 source code.tar.gz | 2024-10-22 | 560.3 kB | |
1.1.3 source code.zip | 2024-10-22 | 589.5 kB | |
README.md | 2024-10-22 | 1.2 kB | |
Totals: 4 Items | 1.7 MB | 0 |
1.1.3 [2024-10-22]
PHP < 8.4
- Fixed Function
bcdivmod
for use in PHP < 7.2.0
phpBCL Core and Examples
-
The examples have been changed to adapt to the new structure of the package.
-
Removed some source code from all files to make it more accessible to use of the package.
```php // Run only Ascoos Cms define( 'ALEXSOFT_RUN_CMS', true ); //REMOVED
and
:::php
// $cms_path is Ascoos Cms global variable require_once($cms_path."/phpBCL/src/coreCompatibilities.php"); // REMOVED
*They have been replaced with the internal variable $phpCBL of the package, which you do not need to call.*
You should load only the file `autoload.php` file into your code.
:::php
$path = '[YOUR SITE PATH]'; include $path . '/phpBCL/autoload.php'; / // For general use
OR
:::php
include '../autoload.php'; // Used by phpBCL examples
[](https://sourceforge.net/projects/phpbcl/files/1.1.3/phpBCL-1.1.3.zip/download)