diff --git a/Plugins/Aspose_Cells_Java_for_PHP/README.md b/Plugins/Aspose_Cells_Java_for_PHP/README.md
deleted file mode 100644
index dbd29754..00000000
--- a/Plugins/Aspose_Cells_Java_for_PHP/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# Aspose.Cells Java for PHP
-Aspose Cells Java for PHP is a PHP project that demonstrates / provides the Aspose.Cells for Java API usage examples in PHP by using PHP/JAVA Bridge.
-
-You will need to configure PHP/Java Bridge before using any of the Aspose provided Java APIs in PHP e.g Aspose.Words, Aspose.Cells and Aspose.Slides etc.
-
-For the configuration/setup of PHP/Java Bridge, please see:
-
-http://php-java-bridge.sourceforge.net/pjb/index.php
-
-To download Aspose.Cells for Java API to be used with these examples through PHP/Java Bridge
-Please navigate to:
-
-http://www.aspose.com/community/files/72/java-components/aspose.cells-for-java/
-
-For most complete documentation of the project, check Aspose.Words Java for PHP confluence wiki link:
-
-http://www.aspose.com/docs/display/cellsjava/5.+Aspose.Cells+Java+for+PHP
-
-
-
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php
index ca045d3b..dff8ead5 100644
--- a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php
+++ b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/WorkingWithFiles/FileHandlingFeatures/OpeningFiles.php
@@ -1,10 +1,4 @@
getWorksheets();
- $worksheet = $worksheets->get(0);
+$worksheets = $workbook->getWorksheets();
+$worksheet = $worksheets->get(0);
- $h_page_breaks = $worksheet->getHorizontalPageBreaks();
- $h_page_breaks->add("Y30");
+$h_page_breaks = $worksheet->getHorizontalPageBreaks();
+$h_page_breaks->add("Y30");
- $v_page_breaks = $worksheet->getVerticalPageBreaks();
- $v_page_breaks->add("Y30");
+$v_page_breaks = $worksheet->getVerticalPageBreaks();
+$v_page_breaks->add("Y30");
- # Saving the modified Excel file in default (that is Excel 2003) format
- $workbook->save($dataDir . "Add Page Breaks.xls");
+# Saving the modified Excel file in default (that is Excel 2003) format
+$workbook->save($dataDir . "Add Page Breaks.xls");
print "Add page breaks, please check the output file." . PHP_EOL;
@@ -43,11 +43,11 @@ public static function add_page_breaks($dataDir=null, $workbook)
public static function clear_all_page_breaks($dataDir=null, $workbook)
{
- $workbook->getWorksheets()->get(0)->getHorizontalPageBreaks()->clear();
- $workbook->getWorksheets()->get(0)->getVerticalPageBreaks()->clear();
+$workbook->getWorksheets()->get(0)->getHorizontalPageBreaks()->clear();
+$workbook->getWorksheets()->get(0)->getVerticalPageBreaks()->clear();
- # Saving the modified Excel file in default (that is Excel 2003) format
- $workbook->save($dataDir . "Clear All Page Breaks.xls");
+# Saving the modified Excel file in default (that is Excel 2003) format
+$workbook->save($dataDir . "Clear All Page Breaks.xls");
print "Clear all page breaks, please check the output file." . PHP_EOL;
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php
index ed733fe5..bd4442c7 100644
--- a/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php
+++ b/Plugins/Aspose_Cells_Java_for_PHP/src/aspose/cells/quickstart/HelloWorld.php
@@ -1,42 +1,34 @@
getWorksheets()->get(0);
- $doc = new \COM("Aspose.Words.Document");
+ # Access cell "A1" in the sheet.
+ $cell = $sheet->getCells()->get("A1");
- $builder = new \COM("Aspose.Words.DocumentBuilder");
+ # Input the "Hello World!" text into the "A1" cell
+ $cell->setValue("Hello World!");
- $builder->Document = $doc;
+ # Saving the modified Excel file in default (that is Excel 2003) format
+ $file_format_type = new FileFormatType();
+ $workbook->save($dataDir . "HelloWorld.xls", $file_format_type->EXCEL_97_TO_2003);
- $builder->Write("Hello world!");
-
- $doc->Save("./data/HelloWorld Out.docx");
-
-
- /*$ptr= new \COM("Aspose.Words.ComHelper")or die('Unable to load helper');
-
- $doc = $ptr->New("Document",array());
-
- $builder = $ptr->New("Aspose.Words.DocumentBuilder",array($doc));
-
- $builder->Writeln("Hello World!");
-
- $doc->Save("./data/HelloWorld Out.docx");*/
+ print "Document has been saved, please check the output file.";
}
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls
deleted file mode 100644
index 77747122..00000000
Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.default.out.xls and /dev/null differ
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls
deleted file mode 100644
index 667ceee1..00000000
Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xls and /dev/null differ
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx
deleted file mode 100644
index 7bf7a189..00000000
Binary files a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xlsx and /dev/null differ
diff --git a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml b/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml
deleted file mode 100644
index f7977198..00000000
--- a/Plugins/Aspose_Cells_Java_for_PHP/tests/data/WorkingWithFiles/FileHandlingFeatures/SavingFiles/book.out.xml
+++ /dev/null
@@ -1,357 +0,0 @@
-