You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52-52Lines changed: 52 additions & 52 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,58 @@ Aspose.Cells Cloud SDK for PHP empowers developers to programmatically manage Ex
6
6
7
7
Enhance your PHP applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/php) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-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.
8
8
9
+
10
+
## Quick Start Guide
11
+
12
+
To begin with Aspose.Cells Cloud, here's what you need to do:
13
+
14
+
1. Sign up for an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to obtain your application details.
15
+
2. Install the Aspose.Cells Cloud PHP Package from [Packagist](https://packagist.org/packages/aspose/cells-sdk-php).
16
+
17
+
**To install Aspose.Cells Cloud via Composer, follow these steps:**
18
+
19
+
- Add Aspose.Cells Cloud as a dependency to your `composer.json` file:
20
+
21
+
```json
22
+
{
23
+
"require": {
24
+
"aspose/cells-cloud": "^25.3"
25
+
}
26
+
}
27
+
```
28
+
29
+
- Run Composer install Aspose.Cells Cloud SDK:
30
+
31
+
```bash
32
+
composer install
33
+
```
34
+
35
+
- Include Composer's autoloader in your PHP code:
36
+
37
+
```php
38
+
require 'vendor/autoload.php';
39
+
```
40
+
41
+
- You're now ready to use Aspose.Cells Cloud in your PHP project.
42
+
43
+
3. Use the conversion code provided below as a reference to add or modify your application.
44
+
45
+
## Convert an Excel File Using PHP
46
+
47
+
```php
48
+
<?php
49
+
require_once('vendor\autoload.php');
50
+
use \Aspose\Cells\Cloud\Api\CellsApi;
51
+
use \Aspose\Cells\Cloud\Request\PutConvertWorkbookRequest;
52
+
53
+
#get CellsCloudClientId from https://dashboard.aspose.cloud/#/applications
54
+
#get CellsCloudClientSecret from https://dashboard.aspose.cloud/#/applications
55
+
$cellsApi = new CellsApi(getenv("CellsCloudClientId"),getenv("CellsCloudClientSecret"));
## Manipulate Excel and other spreadsheet files in the Cloud
10
62
11
63
- File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud.
@@ -66,58 +118,6 @@ Full list of issues covering all changes in this release:
66
118
|[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√|
67
119
|[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√|
68
120
69
-
## Quick Start Guide
70
-
71
-
To begin with Aspose.Cells Cloud, here's what you need to do:
72
-
73
-
1. Sign up for an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to obtain your application details.
74
-
2. Install the Aspose.Cells Cloud PHP Package from [Packagist](https://packagist.org/packages/aspose/cells-sdk-php).
75
-
76
-
**To install Aspose.Cells Cloud via Composer, follow these steps:**
77
-
78
-
- Add Aspose.Cells Cloud as a dependency to your `composer.json` file:
79
-
80
-
```json
81
-
{
82
-
"require": {
83
-
"aspose/cells-cloud": "^25.3"
84
-
}
85
-
}
86
-
```
87
-
88
-
- Run Composer install Aspose.Cells Cloud SDK:
89
-
90
-
```bash
91
-
composer install
92
-
```
93
-
94
-
- Include Composer's autoloader in your PHP code:
95
-
96
-
```php
97
-
require 'vendor/autoload.php';
98
-
```
99
-
100
-
- You're now ready to use Aspose.Cells Cloud in your PHP project.
101
-
102
-
3. Use the conversion code provided below as a reference to add or modify your application.
103
-
104
-
## Convert an Excel File Using PHP
105
-
106
-
```php
107
-
<?php
108
-
require_once('vendor\autoload.php');
109
-
use \Aspose\Cells\Cloud\Api\CellsApi;
110
-
use \Aspose\Cells\Cloud\Request\PutConvertWorkbookRequest;
111
-
112
-
$cellsApi = new CellsApi(getenv("CellsCloudClientId"),getenv("CellsCloudClientSecret"),"v3.0",getenv("CellsCloudApiBaseUrl"));
0 commit comments