Skip to content

Commit ab0de5c

Browse files
committed
update to v21.12
1 parent 69b3c5c commit ab0de5c

File tree

4 files changed

+46
-8
lines changed

4 files changed

+46
-8
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ Aspose.Cells for PHP via Java is a feature-rich API to create, process, manipula
1515
- Populate worksheets through Smart Markers.
1616

1717
## Read & Write Excel Files
18-
19-
**Microsoft Excel:** XLS, XLSX, XLSB, XLTX, XLTM, XLSM, XML
20-
**OpenOffice:** ODS
21-
**Text:** CSV, Tab-Delimited, TXT
18+
**Microsoft Excel:** XLS, XLSX, XLSB, XLTX, XLTM, XLSM, XML
19+
**OpenOffice:** ODS
20+
**Text:** CSV, Tab-Delimited, TXT, JSON
2221
**Web:** HTML, MHTML
2322

24-
## Save Excel Files As
25-
26-
**Fixed Layout:** PDF, XPS
23+
## Save Excel Files As
24+
**Fixed Layout:** PDF, XPS
2725
**Images:** JPEG, PNG, BMP, SVG, TIFF, GIF, EMF
26+
**Text:** CSV, Tab-Delimited, JSON, SQL, XML
2827

2928
## Getting Started with Aspose.Cells for PHP via Java
3029

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type" : "library",
44
"description" : "A powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV and HTML files.",
55
"keywords" : [
6-
"Excel", "XLS", "XLSX", "XLSB", "CSV", "PDF", "Convert", "Excel to PDF", "HTML", "ODS", "Numbers", "XLSM", "OOXML", "Spreadsheet", "SpreadsheetML", "Markdown", "JPG", "XPS", "DOCX", "PPTX", "MHTML", "SVG"
6+
"Excel", "XLS", "XLSX", "XLSB", "CSV", "PDF", "Convert", "Excel to PDF", "HTML", "ODS", "Numbers", "XLSM", "OOXML", "Spreadsheet", "SpreadsheetML", "Markdown", "JPG", "XPS", "DOCX", "PPTX", "MHTML", "SVG", "JSON", "SQL", "XML"
77
],
88
"homepage" : "https://products.aspose.com/cells/php-java",
99
"license" : "proprietary",
Binary file not shown.

lib/aspose.cells.php

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,6 +1107,7 @@ final class FileFormatType {
11071107
const PPTM = 41;
11081108
const PPTX = 26;
11091109
const SPREADSHEET_ML = 15;
1110+
const SQL_SCRIPT = 514;
11101111
const SVG = 28;
11111112
const SXC = 60;
11121113
const TAB_DELIMITED = 11;
@@ -1605,6 +1606,7 @@ final class LoadDataFilterOptions {
16051606
const OLE_OBJECT = 268435456;
16061607
const PICTURE = 134217728;
16071608
const PIVOT_TABLE = 8192;
1609+
const REVISION = 536870912;
16081610
const SETTINGS = 1114112;
16091611
const SHAPE = 402653696;
16101612
const SHEET_DATA = 403701759;
@@ -1634,6 +1636,7 @@ final class LoadFormat {
16341636
const UNKNOWN = 255;
16351637
const XLSB = 16;
16361638
const XLSX = 6;
1639+
const XML = 51;
16371640
};
16381641

16391642
final class LookAtType {
@@ -2680,6 +2683,7 @@ final class SaveFormat {
26802683
const PNG = 262;
26812684
const PPTX = 61;
26822685
const SPREADSHEET_ML = 15;
2686+
const SQL_SCRIPT = 514;
26832687
const SVG = 28;
26842688
const SXC = 60;
26852689
const TAB_DELIMITED = 11;
@@ -2692,6 +2696,7 @@ final class SaveFormat {
26922696
const XLSX = 6;
26932697
const XLTM = 9;
26942698
const XLTX = 8;
2699+
const XML = 51;
26952700
const XPS = 20;
26962701
};
26972702

@@ -2898,6 +2903,12 @@ final class SqlDataType {
28982903
const SQL_W_VARCHAR = -9;
28992904
};
29002905

2906+
final class SqlScriptOperatorType {
2907+
const DELETE = 2;
2908+
const INSERT = 0;
2909+
const UPDATE = 1;
2910+
};
2911+
29012912
final class StyleModifyFlag {
29022913
const ALIGNMENT_SETTINGS = 38;
29032914
const ALL = 0;
@@ -4562,6 +4573,20 @@ function __construct(...$argv) {
45624573
}
45634574
}
45644575

4576+
class SqlScriptColumnTypeMap extends Java {
4577+
static private $_className = "com.aspose.cells.SqlScriptColumnTypeMap";
4578+
function __construct(...$argv) {
4579+
parent::__construct(self::$_className, ...$argv);
4580+
}
4581+
}
4582+
4583+
class SqlScriptSaveOptions extends Java {
4584+
static private $_className = "com.aspose.cells.SqlScriptSaveOptions";
4585+
function __construct(...$argv) {
4586+
parent::__construct(self::$_className, ...$argv);
4587+
}
4588+
}
4589+
45654590
class Style extends Java {
45664591
static private $_className = "com.aspose.cells.Style";
45674592
function __construct(...$argv) {
@@ -4730,6 +4755,20 @@ function __construct(...$argv) {
47304755
}
47314756
}
47324757

4758+
class XmlLoadOptions extends Java {
4759+
static private $_className = "com.aspose.cells.XmlLoadOptions";
4760+
function __construct(...$argv) {
4761+
parent::__construct(self::$_className, ...$argv);
4762+
}
4763+
}
4764+
4765+
class XmlSaveOptions extends Java {
4766+
static private $_className = "com.aspose.cells.XmlSaveOptions";
4767+
function __construct(...$argv) {
4768+
parent::__construct(self::$_className, ...$argv);
4769+
}
4770+
}
4771+
47334772
class XpsSaveOptions extends Java {
47344773
static private $_className = "com.aspose.cells.XpsSaveOptions";
47354774
function __construct(...$argv) {

0 commit comments

Comments
 (0)