I need to port existing ASP.Net with C# Aspose code to PHP.
Having great difficulty. This is the following code that I wish to functionally replicate in PHP:
Aspose.Slides.License license = new Aspose.Slides.License();
license.SetLicense("Aspose.Slides.lic");
PresentationEx pres = new PresentationEx(path + "\\myppt.pptx");
SlideEx sld_first = pres.Slides[0];
AutoShapeEx asex = null;
foreach (ShapeEx s in sld_first.Shapes)
{
if (s.Name.Equals("DateTextBox"))
{
asex = (AutoShapeEx)s;
break;
}
}
I realize that this will not be a line-by-line change, and that within PHP other matters are involved, eg in reading documentation either a $ = new Java or $ = new COM.