aspose / cells-sdk-php
Effortlessly handle Excel and other spreadsheet documents with features like opening, generating, editing, splitting, merging, comparing, and converting. Seamlessly integrate Cloud API into your solutions to efficiently manipulate documents. Convert Excel or other spreadsheets to CSV, PDF, JSON, XML
Installs: 10 625
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 3
Requires
- php: >=5.5
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.4
Requires (Dev)
- phpunit/phpunit: ^8
- squizlabs/php_codesniffer: ~2.6
- dev-master
- 24.12
- 24.11
- 24.10
- 24.9
- 24.8
- 24.7
- 24.6
- 24.5.1
- 24.4
- 24.3.0
- 24.2.1
- 24.1.1
- 23.12
- 23.11
- 23.10
- 23.9
- 23.8
- 23.7
- 23.6
- 23.5
- 23.4
- 22.12
- 22.11
- 22.10
- 22.9
- 22.8
- 22.7
- 22.6.1
- 22.6
- 22.5
- 22.4
- 22.3
- 22.2
- 22.1
- 21.12
- 21.11
- 21.10
- 21.9
- 21.8
- 21.7
- 21.6
- 21.5
- 21.1
- 20.11.1
- 20.11
- 20.10
- 20.9
- 20.8
- 20.7
- 20.6
- 20.4
- 20.2
- 20.1
- 19.10
- 19.9
- 19.6
- 19.2.1
- 19.2
- 18.9.1
- 18.9
- 18.8
- 18.5
This package is not auto-updated.
Last update: 2025-01-09 13:45:53 UTC
README
Aspose.Cells Cloud for PHP enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats.
PHP package for Aspose.Cells Cloud
Enhance your PHP applications with the Aspose.Cells Cloud , enabling seamless integration with Excel, ODS, CSV, Json and other spreadsheet document formats. With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine.
Manipulate Excel and other spreadsheet files in the Cloud
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
- Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements.
- Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data.
- Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results.
- Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs.
- Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs.
- Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity.
- Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application..
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
- Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data.
Feature & Enhancements in Version 24.12
Full list of issues covering all changes in this release:
- Add the new remove duplicates api.
- Add the new extract text API.
- The pivot filter could not be created successfully.
Support file format
Quick Start Guide
To begin with Aspose.Cells Cloud, here's what you need to do:
-
Sign up for an account at Aspose for Cloud to obtain your application details.
-
Install the Aspose.Cells Cloud PHP Package from Packagist.
To install Aspose.Cells Cloud via Composer, follow these steps:
- Add Aspose.Cells Cloud as a dependency to your
composer.json
file:
{ "require": { "aspose/cells-cloud": "^24.3" } }
- Run Composer update to install the SDK:
composer update
- Include Composer's autoloader in your PHP code:
require 'vendor/autoload.php';
- You're now ready to use Aspose.Cells Cloud in your PHP project.
- Add Aspose.Cells Cloud as a dependency to your
-
Use the conversion code provided below as a reference to add or modify your application.
Convert an Excel File Using PHP
<?php require_once('vendor\autoload.php'); use \Aspose\Cells\Cloud\Api\CellsApi; use \Aspose\Cells\Cloud\Request\PutConvertWorkbookRequest; $cellsApi = new CellsApi(getenv("CellsCloudClientId"),getenv("CellsCloudClientSecret"),"v3.0",getenv("CellsCloudApiBaseUrl")); $remoteFolder = "TestData/In"; $localName = "Book1.xlsx"; $remoteName = "Book1.xlsx"; $format = "csv"; $mapFiles = array (); $mapFiles[$localName] = CellsApiTestBase::getfullfilename($localName); CellsApiTestBase::ready( $this->instance,$localName ,$remoteFolder . "/" . $remoteName , ""); $request = new PutConvertWorkbookRequest(); $request->setFile( $mapFiles); $request->setFormat( $format); $$cellsApi->putConvertWorkbook($request); ?>
Aspose.Cells Cloud in Popular Languages
Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial