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
Aspose.Cells Cloud SDK for PHP empowers developers to programmatically manage Excel files with precision. This comprehensive PHP library supports advanced Excel operations like cell data formatting, dynamic formulas, pivot tables, conditional styling, charts, hyperlinks, comments, and data validation. It also enables seamless Excel file conversion (XLSX, CSV, PDF, ODS), document splitting/merging, and file repair. Designed for cloud integration, this API-first solution accelerates spreadsheet automation while ensuring data integrity across platforms like AWS, Azure, and Google Cloud.
4
-
5
-
## PHP SDK package for Aspose.Cells Cloud
6
-
7
-
Enhance your PHP applications with [Aspose.Cells Cloud](https://products.aspose.cloud/cells/php) – a powerful, cloud-based SDK that enables seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). Leveraging its robust REST API, developers can effortlessly create, read, edit, convert, and manipulate spreadsheet content programmatically—without requiring any local office software.
3
+
[Aspose.Cells Cloud SDK for PHP](https://products.aspose.cloud/cells/php) is a cloud-first REST API that lets PHP applications create, read, edit, convert, and repair [Excel, ODS, CSV, JSON, and other spreadsheet files](https://docs.aspose.cloud/cells/supported-file-formats/) without installing Microsoft Office. It supports advanced features, including cell formatting, formulas, pivot tables, conditional styling, charts, hyperlinks, comments, data validation, document splitting, and merging, and runs on AWS, Azure, and Google Cloud, while ensuring data integrity.
8
4
9
5
## Quick Start Guide
10
6
@@ -20,7 +16,7 @@ To begin with Aspose.Cells Cloud, here's what you need to do:
- Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats.
117
113
- 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.
118
114
119
-
## Feature & Enhancements in Version 25.9
115
+
## Feature & Enhancements in Version 25.10
120
116
121
117
Full list of issues covering all changes in this release:
122
118
123
-
|**Summary**|**Category**|
124
-
| :- | :- |
125
-
| Support trim spreadsheet content in Cells Cloud 4.0. | Improvement |
126
-
| Support trim worksheet range content in Cells Cloud 4.0. | Improvement |
127
-
| Fix few issues about spelling error. | Bug |
119
+
|**ID**|**Summary**|**Category**|
120
+
| :- | :- | :- |
121
+
| 57421 | Optimize data Transform API: replace delete with remove. | Improvement |
122
+
| 57574 | Support to update the spreadsheet content words case in Cells Cloud 4.0. | Improvement |
123
+
| 57575 | Support to remove characters from spreadsheet content in Cells Cloud 4.0. | Improvement |
124
+
| 57576 | Support to add text for spreadsheet content in Cells Cloud 4.0. | Improvement |
125
+
| 57577 | Support to convert text for spreadsheet content in Cells Cloud 4.0. | Improvement |
126
+
| 57578 | Support to extract text for spreadsheet content in Cells Cloud 4.0. | Improvement |
127
+
| 57579 | Support to extract text for spreadsheet content in Cells Cloud 4.0. | Improvement |
128
+
| 57580 | Support to split text for spreadsheet content in Cells Cloud 4.0. | Improvement |
128
129
129
130
## Available SDKs
130
131
@@ -146,4 +147,4 @@ The Aspose.Cells Cloud SDK is available in multiple popular programming language
Specify appending text to multiple cells at once, allowing you to add prefixes, suffixes, labels, or any specific characters. You can choose the exact position of the text—in the beginning, at the end, or before or after certain characters in the cell.
PUT http://api.aspose.cloud/v4.0/cells/content/add/text
18
+
```
19
+
### **Function Description**
20
+
Bulk-inserts the supplied string into every cell of the chosen range at the exact position you specify(prefix, suffix, before/after a given substring, or offset). - **position** enum: None, AtTheBeginning, AtTheEnd, BeforeText, AfterText. - **selectText**: when `BeforeText` or `AfterText` is used, this field supplies the anchor substring; if the anchor is not found the cell is left unchanged.- **skipEmptyCells**: `true` → only non-blank cells are processed; `false` → empty cells receive the new text directly.- **Numeric / boolean / formula cells** are converted to string before insertion; formulas are **dropped** to avoid corruption.- Returns the **count of touched cells** and the updated workbook stream.
21
+
22
+
### The request parameters of **addText** API are:
23
+
24
+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
|region|String|Query|The spreadsheet region setting.|
36
+
|password|String|Query|The password for opening spreadsheet file.|
37
+
38
+
### **Response Description**
39
+
```json
40
+
{
41
+
File
42
+
}
43
+
```
44
+
45
+
46
+
## OpenAPI Specification
47
+
48
+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/AddText) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Indicates converting the numbers stored as text into the correct number format, replacing unwanted characters and line breaks with the desired characters, and converting accented characters to their equivalent characters without accents.
PUT http://api.aspose.cloud/v4.0/cells/content/convert/text
18
+
```
19
+
### **Function Description**
20
+
-**Convert numbers stored as text to numbers**Transform numeric data stored as text to numbers, ensuring accurate calculations and proper data representation.- **Replace specific characters**Replace all occurrences of specified characters in all the selected cells at once to standardize your information.- **Convert line breaks to space, comma or semicolon**Improve the readability of your sheets by converting line breaks to space, comma, or semicolon, creating a more organized and visually appealing presentation.- **Replace accented characters**If your data is in different languages, you have the option to swap accented characters like "é" or "ü" with their non-accented counterparts. This enhances consistency and clarity in your text.
21
+
22
+
### The request parameters of **convertText** API are:
23
+
24
+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
|region|String|Query|The spreadsheet region setting.|
35
+
|password|String|Query|The password for opening spreadsheet file.|
36
+
37
+
### **Response Description**
38
+
```json
39
+
{
40
+
File
41
+
}
42
+
```
43
+
44
+
45
+
## OpenAPI Specification
46
+
47
+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/ConvertText) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
Indicates extracting substrings, text characters, and numbers from a spreadsheet cell into another cell without having to use complex FIND, MIN, LEFT, or RIGHT formulas.
PUT http://api.aspose.cloud/v4.0/cells/content/extract/text
18
+
```
19
+
### **Function Description**
20
+
Extracts substrings, numbers, or fixed-length prefixes/suffixes from the selected range and writes the results directly to the target area—no Excel formulas, no helper columns, no manual copy-paste.The engine works cell-by-cell:- **String cells** are scanned for the requested delimiter or position and the matching fragment is returned.- **Numeric or date cells** are implicitly converted to text(using the workbook’s locale) before the rule is applied, so 123.45 can yield 123 (left 3) or 45 (right 2) without pre-formatting.- **Empty cells** remain blank; cells where the delimiter is not found produce an empty string, giving you a predictable, non-error output.Because the operation is executed inside the streaming reader/writer, no temporary objects are created—memory stays flat even on million-row ranges—and the source formatting, formulas and data-validation are left untouched.Result area can be on the same sheet, another sheet, or even another workbook, making it ideal for preparing clean data feeds for pivot tables, charts or downstream ML pipelines.- **Extract first characters**Get the first character or specified number of characters from the left of each selected cell.Make it easy to capture relevant information at the beginning of your data.- **Extract text before, after or between specified characters** Perform precise information retrieval by extracting text before, after, or between the characters or substrings you specify.- **Get text from any position in a string**Enjoy flexibility in data extraction as you retrieve text from any position within a string. Simply indicate where the first character is located and how many characters to pull.- **Extract last characters**Get the last character or a specified number of characters from the end of your cell values. Extract the desired information from the tail of your data, such as the file extensions from a list of file names.- **Extract all numbers from selected cells**Get all numbers from alphanumeric strings making it easier for you to work with quantitative information in your spreadsheets.- **Have the result as value or formula**Tailor the output of your extraction by choosing whether the result appears as a static value or dynamic formula.
21
+
22
+
### The request parameters of **extractText** API are:
23
+
24
+
| Parameter Name | Type | Path/Query String/HTTPBody | Description |
|region|String|Query|The spreadsheet region setting.|
38
+
|password|String|Query|The password for opening spreadsheet file.|
39
+
40
+
### **Response Description**
41
+
```json
42
+
{
43
+
File
44
+
}
45
+
```
46
+
47
+
48
+
## OpenAPI Specification
49
+
50
+
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/ExtractText) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
0 commit comments