Can you convert this C# code to PHP?

  • Thread starter Thread starter Craigus
  • Start date Start date
C

Craigus

Guest
How do I do this in PHP?

public void bookAppointment(XmlElement appt) {
XmlElement client = (XmlElement)appt.SelectSingleNode("Client");
XmlElement action = (XmlElement)appt.SelectSingleNode("action");
}
 
Back
Top